We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e7106a7 commit ed7aaeeCopy full SHA for ed7aaee
guake/boxes.py
@@ -715,11 +715,12 @@ def on_rename(self, user_data):
715
def on_tab_color_change(self, user_data):
716
HidePrevention(self.get_toplevel()).prevent()
717
dialog = Gtk.ColorChooserDialog(_("Select Color"), self.notebook.guake.window)
718
- if dialog.run() == Gtk.ResponseType.OK:
+ response = dialog.run()
719
+ if response == Gtk.ResponseType.OK:
720
color = dialog.get_rgba()
- dialog.destroy()
721
page_num = self.notebook.find_tab_index_by_label(self)
722
self.notebook.color_page(page_num, color, True)
723
+ dialog.destroy()
724
HidePrevention(self.get_toplevel()).allow()
725
self.grab_focus_on_last_focused_terminal()
726
0 commit comments