summaryrefslogtreecommitdiff
path: root/libmate-panel-applet/mate-panel-applet.c
diff options
context:
space:
mode:
Diffstat (limited to 'libmate-panel-applet/mate-panel-applet.c')
-rw-r--r--libmate-panel-applet/mate-panel-applet.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/libmate-panel-applet/mate-panel-applet.c b/libmate-panel-applet/mate-panel-applet.c
index ec8ef6ef..04863304 100644
--- a/libmate-panel-applet/mate-panel-applet.c
+++ b/libmate-panel-applet/mate-panel-applet.c
@@ -1058,11 +1058,11 @@ mate_panel_applet_get_preferred_width (GtkWidget *widget,
minimum_width,
natural_width);
-#if !GTK_CHECK_VERSION (3, 23, 0)
+#if !GTK_CHECK_VERSION (3, 22, 31)
MatePanelApplet *applet = MATE_PANEL_APPLET (widget);
if (applet->priv->out_of_process) {
/* Out-of-process applets end up scaled up doubly with GTK 3.22.
- * For these builds divide by the scale factor to ensure
+ * For these builds divide by the scale factor to ensure
* they are back at their own intended size.
*/
gint scale;
@@ -1081,12 +1081,13 @@ mate_panel_applet_get_preferred_height (GtkWidget *widget,
GTK_WIDGET_CLASS (mate_panel_applet_parent_class)->get_preferred_height (widget,
minimum_height,
natural_height);
-#if !GTK_CHECK_VERSION (3, 23, 0)
+
+#if !GTK_CHECK_VERSION (3, 22, 31)
MatePanelApplet *applet = MATE_PANEL_APPLET (widget);
if (applet->priv->out_of_process) {
gint scale;
/* Out-of-process applets end up scaled up doubly with GTK 3.22.
- * For these builds divide by the scale factor to ensure
+ * For these builds divide by the scale factor to ensure
* they are back at their own intended size.
*/
scale = gtk_widget_get_scale_factor (widget);