parent
07b732fc80
commit
6e30f2a3d3
@ -1 +1 @@
|
|||||||
SOURCES/gnome-shell-47.1.tar.xz
|
SOURCES/gnome-shell-47.2.tar.xz
|
||||||
|
@ -1 +1 @@
|
|||||||
9dac2ffdf4063cff0dc5ca26efd699370a59f768 SOURCES/gnome-shell-47.1.tar.xz
|
fb4d661d735c51960dca5d9d70fa04e66dbbd145 SOURCES/gnome-shell-47.2.tar.xz
|
||||||
|
@ -1,30 +0,0 @@
|
|||||||
From db2ac6188e3fb7ee727e9e71d5416e8f2b75f12b Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Florian=20M=C3=BCllner?= <fmuellner@gnome.org>
|
|
||||||
Date: Thu, 7 Nov 2024 16:23:48 +0100
|
|
||||||
Subject: [PATCH] dialog: Wrap titles
|
|
||||||
|
|
||||||
Dialogs should not use titles that are too long to fit, but if
|
|
||||||
they do, wrapping is more appropriate than ellipsizing.
|
|
||||||
|
|
||||||
Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3540>
|
|
||||||
---
|
|
||||||
js/ui/dialog.js | 3 +++
|
|
||||||
1 file changed, 3 insertions(+)
|
|
||||||
|
|
||||||
diff --git a/js/ui/dialog.js b/js/ui/dialog.js
|
|
||||||
index 11a27a0207..361fad3cb9 100644
|
|
||||||
--- a/js/ui/dialog.js
|
|
||||||
+++ b/js/ui/dialog.js
|
|
||||||
@@ -173,6 +173,9 @@ export const MessageDialogContent = GObject.registerClass({
|
|
||||||
this._title = new St.Label({style_class: 'message-dialog-title'});
|
|
||||||
this._description = new St.Label({style_class: 'message-dialog-description'});
|
|
||||||
|
|
||||||
+ this._title.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
||||||
+ this._title.clutter_text.line_wrap = true;
|
|
||||||
+
|
|
||||||
this._description.clutter_text.ellipsize = Pango.EllipsizeMode.NONE;
|
|
||||||
this._description.clutter_text.line_wrap = true;
|
|
||||||
|
|
||||||
--
|
|
||||||
2.47.0
|
|
||||||
|
|
Loading…
Reference in new issue