diff options
author | Wolfgang Ulbrich <[email protected]> | 2016-02-19 15:30:30 +0100 |
---|---|---|
committer | Wolfgang Ulbrich <[email protected]> | 2016-02-19 15:30:30 +0100 |
commit | b084db649e1b5ffbc496d297a4252e20b870fe9a (patch) | |
tree | a8a10684dccf6d43955c34cc7a715c51726c66ff | |
parent | b1051cc490dd2f47fc59dae23a6988c6eb5bfdf8 (diff) | |
download | mate-terminal-b084db649e1b5ffbc496d297a4252e20b870fe9a.tar.bz2 mate-terminal-b084db649e1b5ffbc496d297a4252e20b870fe9a.tar.xz |
GTK+3: add style class mate-terminal
-rw-r--r-- | src/terminal-window.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/terminal-window.c b/src/terminal-window.c index 245900d..d7819c5 100644 --- a/src/terminal-window.c +++ b/src/terminal-window.c @@ -2076,6 +2076,13 @@ terminal_window_init (TerminalWindow *window) } #endif +#if GTK_CHECK_VERSION(3, 0, 0) + GtkStyleContext *context; + + context = gtk_widget_get_style_context (GTK_WIDGET (window)); + gtk_style_context_add_class (context, "mate-terminal"); +#endif + gtk_window_set_title (GTK_WINDOW (window), _("Terminal")); priv->active_screen = NULL; |