Skip to content

Commit

Permalink
fix missing prefix
Browse files Browse the repository at this point in the history
git-svn-id: https://xpra.org/svn/Xpra/trunk@24220 3bb7dfac-3a0b-4e04-842a-767bc560f471
  • Loading branch information
totaam committed Oct 20, 2019
1 parent 0396a87 commit 7339f27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/xpra/client/gtk_base/confirm_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
class ConfirmDialogWindow(object):

def __init__(self, title="Title", prompt="", info=(), icon="", buttons=()):
self.window = Gtk.Window(type=WINDOW_POPUP)
self.window = Gtk.Window(type=Gtk.WindowType.POPUP)
self.window.set_border_width(20)
self.window.set_position(Gtk.WindowPosition.CENTER)
self.window.connect("destroy", self.quit)
Expand Down

0 comments on commit 7339f27

Please sign in to comment.