Skip to content

Commit

Permalink
fix setting transparency issue when used in GNOME3
Browse files Browse the repository at this point in the history
  • Loading branch information
liuyi92 authored and raveit65 committed Mar 29, 2018
1 parent 6f49c62 commit e1b834a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/terminal-screen.c
Expand Up @@ -1138,6 +1138,25 @@ update_color_scheme (TerminalScreen *screen)
if (bold_rgba)
vte_terminal_set_color_bold (VTE_TERMINAL (screen),
bold_rgba);

/* In case of being used in GNOME3 desktop environment.
* code references to gnome-terminal
*/
if (bg_type == TERMINAL_BACKGROUND_TRANSPARENT)
{
/* toplevel widget */
GtkWidget *toplevel;
toplevel = gtk_widget_get_toplevel (GTK_WIDGET (screen));
if (toplevel != NULL && gtk_widget_is_toplevel (toplevel)
&& !gtk_widget_get_app_paintable (toplevel))
{
gtk_widget_set_app_paintable (toplevel, TRUE);
/* The opaque region of the toplevel isn't updated until the toplevel is allocated;
* set_app_paintable() doesn't force an allocation, so do that manually.
*/
gtk_widget_queue_resize (toplevel);
}
}
}

void
Expand Down

0 comments on commit e1b834a

Please sign in to comment.