From 35c956fd0542516b5776534134d52dadbf83e601 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 16 Sep 2023 08:29:15 -0700 Subject: [PATCH] apprt/gtk: Window css styling is no longer used --- src/apprt/gtk/Window.zig | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/apprt/gtk/Window.zig b/src/apprt/gtk/Window.zig index a036a5489..bfc9430dd 100644 --- a/src/apprt/gtk/Window.zig +++ b/src/apprt/gtk/Window.zig @@ -25,9 +25,6 @@ window: *c.GtkWindow, /// The notebook (tab grouping) for this window. notebook: *c.GtkNotebook, -/// The background CSS for the window (if any). -css_window_background: ?[]u8 = null, - /// The resources directory for the icon (if any). icon_search_dir: ?[:0]const u8 = null, @@ -125,7 +122,6 @@ pub fn init(self: *Window, app: *App) !void { } pub fn deinit(self: *Window) void { - if (self.css_window_background) |ptr| self.app.core_app.alloc.free(ptr); if (self.icon_search_dir) |ptr| self.app.core_app.alloc.free(ptr); }