Skip to content

Commit

Permalink
fix crashes on win32 when using keys to close
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Jun 1, 2023
1 parent 449a654 commit b93d5fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/client/gtk_base/client_launcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def do_create_window(self):
self.window.set_title("Xpra Launcher")
self.window.set_position(Gtk.WindowPosition.CENTER)
self.window.set_wmclass("xpra-launcher-gui", "Xpra-Launcher-GUI")
add_close_accel(self.window, self.destroy)
add_close_accel(self.window, self.accel_close)
icon = get_icon_pixbuf("connect.png")
if icon:
self.window.set_icon(icon)
Expand Down

0 comments on commit b93d5fe

Please sign in to comment.