gtk: remove unused css class on GtkNotebook

This commit is contained in:
Tim Culverhouse
2024-07-11 08:34:51 -05:00
parent 11c2ae1007
commit fc3d885022

View File

@ -107,7 +107,6 @@ pub fn init(self: *Window, app: *App) !void {
// Create a notebook to hold our tabs.
const notebook_widget = c.gtk_notebook_new();
c.gtk_widget_add_css_class(notebook_widget, "ghostty-surface");
const notebook: *c.GtkNotebook = @ptrCast(notebook_widget);
self.notebook = notebook;
const notebook_tab_pos: c_uint = switch (app.config.@"gtk-tabs-location") {