[Xfce4-commits] [xfce/xfce4-panel] 01/01: tasklist: Hide brackets for min windows by default
noreply at xfce.org
noreply at xfce.org
Fri Feb 28 21:07:15 CET 2020
This is an automated email from the git hooks/post-receive script.
o c h o s i p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository xfce/xfce4-panel.
commit a67d53cfea285cc9d610d1eb4d96317221adee3e
Author: Simon Steinbeiss <simon.steinbeiss at elfenbeinturm.at>
Date: Fri Feb 28 21:05:32 2020 +0100
tasklist: Hide brackets for min windows by default
Previously the default was to show "[%s]" as window title for minimized
windows. The old behavior can be re-enabled by setting the hidden
"label-decorations" setting (since 4.14) to TRUE.
---
plugins/tasklist/tasklist-widget.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/plugins/tasklist/tasklist-widget.c b/plugins/tasklist/tasklist-widget.c
index f8b1be6..dfe91f1 100644
--- a/plugins/tasklist/tasklist-widget.c
+++ b/plugins/tasklist/tasklist-widget.c
@@ -511,7 +511,7 @@ xfce_tasklist_class_init (XfceTasklistClass *klass)
PROP_LABEL_DECORATIONS,
g_param_spec_boolean ("label-decorations",
NULL, NULL,
- TRUE,
+ FALSE,
G_PARAM_READWRITE | G_PARAM_STATIC_STRINGS));
gtk_widget_class_install_style_property (gtkwidget_class,
@@ -591,7 +591,7 @@ xfce_tasklist_init (XfceTasklist *tasklist)
tasklist->wrap_windows = FALSE;
tasklist->all_blinking = TRUE;
tasklist->middle_click = XFCE_TASKLIST_MIDDLE_CLICK_DEFAULT;
- tasklist->label_decorations = TRUE;
+ tasklist->label_decorations = FALSE;
#ifdef GDK_WINDOWING_X11
tasklist->wireframe_window = 0;
#endif
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list