debian/patches: Drop 0002_fix_cpufreq_applet_spacing.patch. Applied upstream.

This commit is contained in:
Martin Wimpress
2018-03-26 18:54:58 +01:00
parent 6f8b5599dc
commit 9ecf63ff50
2 changed files with 0 additions and 34 deletions

View File

@ -1,33 +0,0 @@
From ea40c35e823914cd5721ad7af436cb9e69736d2d Mon Sep 17 00:00:00 2001
From: Victor Kareh <vkareh@vkareh.net>
Date: Tue, 20 Mar 2018 07:18:44 -0400
Subject: [PATCH] Fix cpufreq applet spacing on HiDPI displays
---
cpufreq/src/cpufreq-applet.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/cpufreq/src/cpufreq-applet.c b/cpufreq/src/cpufreq-applet.c
index 4f60202..c667eda 100644
--- a/cpufreq/src/cpufreq-applet.c
+++ b/cpufreq/src/cpufreq-applet.c
@@ -372,8 +372,10 @@ cpufreq_applet_get_preferred_width (GtkWidget *widget, gint *minimum_width, gint
CPUFreqApplet *applet;
gint labels_width = 0;
gint width;
+ gint scale;
applet = CPUFREQ_APPLET (widget);
+ scale = gtk_widget_get_scale_factor (widget);
if (applet->orient == MATE_PANEL_APPLET_ORIENT_LEFT ||
applet->orient == MATE_PANEL_APPLET_ORIENT_RIGHT)
@@ -401,7 +403,7 @@ cpufreq_applet_get_preferred_width (GtkWidget *widget, gint *minimum_width, gint
width = labels_width;
}
- *minimum_width = *natural_width = width;
+ *minimum_width = *natural_width = width / scale;
}
static void

View File

@ -1,2 +1 @@
0002_fix_cpufreq_applet_spacing.patch
1000-fix-build-on-linux-4.7-or-newer.patch