diff options
author | Jonathan Michalon <[email protected]> | 2020-01-14 14:18:12 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-02-09 22:13:35 +0100 |
commit | 22ae6cdb57d66f0aedf8e781a3b72cdf5cd0aab1 (patch) | |
tree | d7c9b28b8a86cad6ec49ebf0b6af7e1c3d6a6087 /src/caja-desktop-window.c | |
parent | 224c6ebc0d60bfe636e62378c9a060c9c21e9c00 (diff) | |
download | caja-22ae6cdb57d66f0aedf8e781a3b72cdf5cd0aab1.tar.bz2 caja-22ae6cdb57d66f0aedf8e781a3b72cdf5cd0aab1.tar.xz |
Set a real title on the desktop window (as provided to ATK)
Even if we think that the desktop window title is never seen, it is used
by the window selector in "all windows" mode and speech synthesis.
Diffstat (limited to 'src/caja-desktop-window.c')
-rw-r--r-- | src/caja-desktop-window.c | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/src/caja-desktop-window.c b/src/caja-desktop-window.c index b2b193cc..36ae52ce 100644 --- a/src/caja-desktop-window.c +++ b/src/caja-desktop-window.c @@ -204,6 +204,8 @@ caja_desktop_window_new (CajaApplication *application, XFree(xch); } + gdk_window_set_title (gdkwin, _("Desktop")); + g_signal_connect (window, "delete_event", G_CALLBACK (caja_desktop_window_delete_event), NULL); /* Point window at the desktop folder. @@ -313,12 +315,6 @@ draw (GtkWidget *widget, return GTK_WIDGET_CLASS (caja_desktop_window_parent_class)->draw (widget, cr); } -static char * -real_get_title (CajaWindow *window) -{ - return g_strdup (_("Desktop")); -} - static CajaIconInfo * real_get_icon (CajaWindow *window, CajaWindowSlot *slot) @@ -341,7 +337,6 @@ caja_desktop_window_class_init (CajaDesktopWindowClass *klass) gtk_widget_class_set_accessible_type (wclass, CAJA_TYPE_DESKTOP_WINDOW_ACCESSIBLE); nclass->window_type = CAJA_WINDOW_DESKTOP; - nclass->get_title = real_get_title; nclass->get_icon = real_get_icon; } |