fix logic bug in enableGUI implementation
This commit is contained in:
parent
bb433fc495
commit
54651c7598
|
@ -342,7 +342,7 @@ class Main:
|
||||||
# Populate with hardcoded value (same as connectToStream above)
|
# Populate with hardcoded value (same as connectToStream above)
|
||||||
state.streamsInWhichIAmParticipating.append(1)
|
state.streamsInWhichIAmParticipating.append(1)
|
||||||
|
|
||||||
if daemon == False or state.enableGUI: # FIXME redundant?
|
if daemon == False and state.enableGUI: # FIXME redundant?
|
||||||
if state.curses == False:
|
if state.curses == False:
|
||||||
if not depends.check_pyqt():
|
if not depends.check_pyqt():
|
||||||
sys.exit(
|
sys.exit(
|
||||||
|
|
Loading…
Reference in New Issue
Block a user