diff options
author | Victor Kareh <[email protected]> | 2018-07-27 14:08:09 -0400 |
---|---|---|
committer | raveit65 <[email protected]> | 2018-07-28 11:29:37 +0200 |
commit | b179cad057ff83ccc05b1a346764cb6e0e8ac655 (patch) | |
tree | 8c73c2e17c53a256a1afad28d7bb5461cbde75cb /applets/wncklet | |
parent | 015cc7472baa8bfbcf7549ea54e92a5087955079 (diff) | |
download | mate-panel-b179cad057ff83ccc05b1a346764cb6e0e8ac655.tar.bz2 mate-panel-b179cad057ff83ccc05b1a346764cb6e0e8ac655.tar.xz |
applets: Guard against GTK scale-factor fixes on GtkSocket
Diffstat (limited to 'applets/wncklet')
-rw-r--r-- | applets/wncklet/window-list.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/applets/wncklet/window-list.c b/applets/wncklet/window-list.c index f6055e43..35b87c74 100644 --- a/applets/wncklet/window-list.c +++ b/applets/wncklet/window-list.c @@ -42,7 +42,7 @@ typedef struct { GtkOrientation orientation; int size; -#ifndef WNCKLET_INPROCESS +#if !defined(WNCKLET_INPROCESS) && !GTK_CHECK_VERSION (3, 22, 31) gboolean needs_hints; #endif @@ -322,7 +322,7 @@ static void applet_size_allocate(GtkWidget *widget, GtkAllocation *allocation, T g_assert(len % 2 == 0); -#ifndef WNCKLET_INPROCESS +#if !defined(WNCKLET_INPROCESS) && !GTK_CHECK_VERSION (3, 22, 31) /* HACK: When loading the WnckTasklist initially, it reports size hints as though there were * no elements in the Tasklist. This causes a rendering issue when built out-of-process in * HiDPI displays. We keep a flag to skip size hinting until WnckTasklist has something to @@ -427,7 +427,7 @@ gboolean window_list_applet_fill(MatePanelApplet* applet) tasklist->size = mate_panel_applet_get_size(applet); -#ifndef WNCKLET_INPROCESS +#if !defined(WNCKLET_INPROCESS) && !GTK_CHECK_VERSION (3, 22, 31) tasklist->needs_hints = FALSE; #endif |