Only show console after app close in debug mode
This commit is contained in:
parent
d548c6bdfa
commit
422064e092
1 changed files with 2 additions and 1 deletions
|
@ -39,7 +39,8 @@ class ActionsPlugin(object):
|
||||||
|
|
||||||
@atexit.register
|
@atexit.register
|
||||||
def hideIcon():
|
def hideIcon():
|
||||||
notificationicon.showConsole()
|
if not config.debug:
|
||||||
|
notificationicon.showConsole()
|
||||||
icon.die()
|
icon.die()
|
||||||
|
|
||||||
ui_ip = config.ui_ip if config.ui_ip != "*" else "127.0.0.1"
|
ui_ip = config.ui_ip if config.ui_ip != "*" else "127.0.0.1"
|
||||||
|
|
Loading…
Reference in a new issue