summaryrefslogtreecommitdiff
path: root/gnome-extra/nemo/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-02-02 01:39:05 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-02-02 01:39:05 +0000
commitfcc5224904648a8e6eb528d7603154160a20022f (patch)
tree3bfce096b38a9cea8eed13fc70c1526c456e9abd /gnome-extra/nemo/files
parent2fd57282f0262ca084e05b0f2c63fbada395d02b (diff)
gentoo resync : 02.02.2022
Diffstat (limited to 'gnome-extra/nemo/files')
-rw-r--r--gnome-extra/nemo/files/nemo-4.6-captions-fix.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/gnome-extra/nemo/files/nemo-4.6-captions-fix.patch b/gnome-extra/nemo/files/nemo-4.6-captions-fix.patch
deleted file mode 100644
index 0ea0c9158ad2..000000000000
--- a/gnome-extra/nemo/files/nemo-4.6-captions-fix.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From b0c2b99b46797ca91bdba1d95fda33808174466b Mon Sep 17 00:00:00 2001
-From: Michael Webster <miketwebster@gmail.com>
-Date: Thu, 21 Jan 2021 09:41:40 -0500
-Subject: [PATCH] nemo-icon-canvas-item.c: restore the style context after
- drawing any caption text.
-
-This seemed to be causing style recalculations to accumulate over
-time, and particularly when changing the style for window focus
-in/out events. This would eventually have a huge impact on user
-interaction.
-
-Fixes #2472
----
- libnemo-private/nemo-icon-canvas-item.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/libnemo-private/nemo-icon-canvas-item.c b/libnemo-private/nemo-icon-canvas-item.c
-index d1b6cbfad..b32de357d 100644
---- a/libnemo-private/nemo-icon-canvas-item.c
-+++ b/libnemo-private/nemo-icon-canvas-item.c
-@@ -1143,6 +1143,7 @@ draw_label_text (NemoIconCanvasItem *item,
- gtk_render_layout (context, cr,
- x, text_rect.y0 + details->editable_text_height + LABEL_LINE_SPACING + TEXT_TOP_GAP,
- additional_layout);
-+ gtk_style_context_restore (context);
- }
-
- if (item->details->is_highlighted_as_keyboard_focus) {