[Xfce4-commits] [panel-plugins/xfce4-whiskermenu-plugin] 242/473: Add window title to allow identifying menu window. References #35.
noreply at xfce.org
noreply at xfce.org
Mon Feb 16 23:56:52 CET 2015
This is an automated email from the git hooks/post-receive script.
gottcode pushed a commit to branch master
in repository panel-plugins/xfce4-whiskermenu-plugin.
commit 28fe02b66a0fe8e03f99e87711e1a505a0ca2989
Author: Graeme Gott <graeme at gottcode.org>
Date: Sun Nov 17 15:40:11 2013 -0500
Add window title to allow identifying menu window. References #35.
---
panel-plugin/window.cpp | 2 ++
1 file changed, 2 insertions(+)
diff --git a/panel-plugin/window.cpp b/panel-plugin/window.cpp
index 38b5a51..69515fb 100644
--- a/panel-plugin/window.cpp
+++ b/panel-plugin/window.cpp
@@ -52,6 +52,8 @@ Window::Window() :
// Create the window
m_window = GTK_WINDOW(gtk_window_new(GTK_WINDOW_TOPLEVEL));
gtk_widget_set_name(GTK_WIDGET(m_window), "whiskermenu-window");
+ // Untranslated window title to allow window managers to identify it; not visible to users.
+ gtk_window_set_title(m_window, "Whisker Menu");
gtk_window_set_modal(m_window, true);
gtk_window_set_decorated(m_window, false);
gtk_window_set_skip_taskbar_hint(m_window, true);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list