Skip to content

Commit

Permalink
oops: exiting when we're not meant to
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Apr 13, 2021
1 parent 3bc4f41 commit 0ab4ac4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/client/gtk3/splash_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ def read_stdin(self):
while self.exit_code is None:
line = sys.stdin.readline()
if not line:
self.exit_code = EXIT_CONNECTION_LOST
self.exit()
else:
self.exit_code = EXIT_CONNECTION_LOST
GLib.idle_add(self.handle_stdin_line, line)

def handle_stdin_line(self, line):
Expand Down

0 comments on commit 0ab4ac4

Please sign in to comment.