From 614c892157703bf213fc5ab3dd0fca1e973f9d61 Mon Sep 17 00:00:00 2001 From: trigg Date: Fri, 31 Dec 2021 18:16:24 +0000 Subject: [PATCH] - Hide unimplemented feature --- discover_overlay/voice_settings.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/discover_overlay/voice_settings.py b/discover_overlay/voice_settings.py index dc92ff1..c332fed 100644 --- a/discover_overlay/voice_settings.py +++ b/discover_overlay/voice_settings.py @@ -222,10 +222,10 @@ class VoiceSettingsWindow(SettingsWindow): box = Gtk.Grid() # Autohide - autohide_label = Gtk.Label.new("Hide on mouseover") - autohide = Gtk.CheckButton.new() - autohide.set_active(self.autohide) - autohide.connect("toggled", self.change_hide_on_mouseover) + #autohide_label = Gtk.Label.new("Hide on mouseover") + #autohide = Gtk.CheckButton.new() + #autohide.set_active(self.autohide) + #autohide.connect("toggled", self.change_hide_on_mouseover) # Font chooser font_label = Gtk.Label.new("Font") @@ -458,8 +458,8 @@ class VoiceSettingsWindow(SettingsWindow): guild_ids_scroll_window.add(guild_ids_tree) - box.attach(autohide_label, 0, 0, 1, 1) - box.attach(autohide, 1, 0, 1, 1) + #box.attach(autohide_label, 0, 0, 1, 1) + #box.attach(autohide, 1, 0, 1, 1) box.attach(font_label, 0, 1, 1, 1) box.attach(font, 1, 1, 1, 1) box.attach(bg_col_label, 0, 2, 1, 1)