Skip to content
This repository has been archived by the owner on Oct 17, 2020. It is now read-only.

Commit

Permalink
Comment out unused metacity code like the rest to avoid warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
codygarver committed Feb 4, 2019
2 parents 920b9d1 + e52e45b commit 62f6048
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Panes/AppearancePane.vala
Expand Up @@ -21,13 +21,13 @@ namespace ElementaryTweaks {
private Gtk.Switch prefer_dark_switch;
private Gtk.Switch gnome_menu;
private Gtk.ComboBox gtk_combobox;
private Gtk.ComboBox metacity_combobox;
// private Gtk.ComboBox metacity_combobox;
private Gtk.ComboBox icon_combobox;
private Gtk.ComboBox cursor_combobox;
private Gtk.ComboBox controls_combobox;

private Gtk.ListStore gtk_store;
private Gtk.ListStore metacity_store;
// private Gtk.ListStore metacity_store;
private Gtk.ListStore icon_store;
private Gtk.ListStore cursor_store;
private Gtk.ListStore controls_store;
Expand Down Expand Up @@ -82,7 +82,7 @@ namespace ElementaryTweaks {
controls_store = AppearanceSettings.get_button_layouts (out controls_index);

gtk_combobox.set_model (gtk_store);
metacity_combobox.set_model (metacity_store);
// metacity_combobox.set_model (metacity_store);
icon_combobox.set_model (icon_store);
cursor_combobox.set_model (cursor_store);
controls_combobox.set_model (controls_store);
Expand Down

0 comments on commit 62f6048

Please sign in to comment.