summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMark Givens <[email protected]>2023-06-01 12:21:11 -0600
committerLuke from DC <[email protected]>2023-06-01 18:50:17 +0000
commit95c76539bd78efa3aef0dd744e1c0630d926fbd0 (patch)
treecb5aaca9960eeaa61a37ccbc7269f492ad47648c /src
parente54d44322a07d0c64bd08882a1ad9507dc3e2af1 (diff)
downloadmate-terminal-95c76539bd78efa3aef0dd744e1c0630d926fbd0.tar.bz2
mate-terminal-95c76539bd78efa3aef0dd744e1c0630d926fbd0.tar.xz
terminal-screen: fix pointer type when referencing profile
Diffstat (limited to 'src')
-rw-r--r--src/terminal-screen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/terminal-screen.c b/src/terminal-screen.c
index c5a5b1f..ba8b614 100644
--- a/src/terminal-screen.c
+++ b/src/terminal-screen.c
@@ -1082,7 +1082,7 @@ update_toplevel_transparency (TerminalScreen *screen)
{
GtkWidget *widget = GTK_WIDGET (screen);
TerminalScreenPrivate *priv = screen->priv;
- GSettings *profile = priv->profile;
+ TerminalProfile *profile = priv->profile;
TerminalBackgroundType bg_type = terminal_profile_get_property_enum (profile, TERMINAL_PROFILE_BACKGROUND_TYPE);
if (bg_type == TERMINAL_BACKGROUND_TRANSPARENT)