From 67159afe05b87f21b641f71f3a8b2fb7d109f721 Mon Sep 17 00:00:00 2001 From: lukefromdc Date: Wed, 30 Mar 2016 17:55:45 -0400 Subject: GTK 3.20 cpufreq: fix themes clipping units label Stop BlackMATE, possibly other themes from cutting off the end of the units label and get rid of an #1f block for GTK 3.19 at the same time. GTK 3.19 seemed to pad the end of this label a bit, not so with released GTK 3.20. --- cpufreq/src/cpufreq-applet.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'cpufreq/src/cpufreq-applet.c') diff --git a/cpufreq/src/cpufreq-applet.c b/cpufreq/src/cpufreq-applet.c index 10ed6aad..52ecad94 100644 --- a/cpufreq/src/cpufreq-applet.c +++ b/cpufreq/src/cpufreq-applet.c @@ -334,12 +334,7 @@ cpufreq_applet_get_max_label_width (CPUFreqApplet *applet) label = gtk_label_new (freq_text); #if GTK_CHECK_VERSION (3, 0, 0) gtk_widget_get_preferred_width (applet->label, &label_width, NULL); - -#if GTK_CHECK_VERSION (3, 19, 0) - width = MAX (width, label_width)-2; -#else - width = MAX (width, label_width); -#endif + width = MAX (width, label_width); #endif #if !GTK_CHECK_VERSION (3, 0, 0) gtk_widget_size_request (label, &req); -- cgit v1.2.1