Skip to content

Commit

Permalink
disable indicator building in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
stsdc committed Nov 21, 2023
1 parent 09ab1db commit ad002a1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/MainWindow.vala
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ public class Monitor.MainWindow : Gtk.ApplicationWindow {
stack_switcher.valign = Gtk.Align.CENTER;
stack_switcher.set_stack (stack);

var headerbar = new Gtk.HeaderBar () {
title_widget = stack_switcher,
hexpand = true
};
// var headerbar = new Gtk.HeaderBar () {
// title_widget = stack_switcher,
// hexpand = true
// };

// headerbar.search_revealer.set_reveal_child (stack.visible_child_name == "process_view");
// stack.notify["visible-child-name"].connect (() => {
Expand All @@ -69,7 +69,7 @@ public class Monitor.MainWindow : Gtk.ApplicationWindow {
orientation = Gtk.Orientation.VERTICAL
};

grid.attach (headerbar, 0, 0, 1, 1);
// grid.attach (headerbar, 0, 0, 1, 1);
grid.attach (stack, 0, 1, 1, 1);
grid.attach (statusbar, 0, 2, 1, 1);

Expand Down

0 comments on commit ad002a1

Please sign in to comment.