diff --git a/common/view/wx_view_controls.cpp b/common/view/wx_view_controls.cpp index 85e2ac8cc3..61979f65b6 100644 --- a/common/view/wx_view_controls.cpp +++ b/common/view/wx_view_controls.cpp @@ -44,6 +44,9 @@ static std::unique_ptr GetZoomControllerForPlatform() // smaller rotation values. For those devices, let's handle zoom // based on the rotation amount rather than the time difference. return std::make_unique( CONSTANT_ZOOM_CONTROLLER::MAC_SCALE ); +#elif __WXGTK3__ + // GTK3 is similar, but the scale constant is smaller + return std::make_unique( CONSTANT_ZOOM_CONTROLLER::GTK3_SCALE ); #else return std::make_unique(); #endif