Skip to content

Commit

Permalink
No console + icon in dearpygui
Browse files Browse the repository at this point in the history
  • Loading branch information
lipeeeee committed Feb 4, 2024
1 parent d0ccd69 commit a77fc92
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.spec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ exe = EXE(
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
console=False,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
Expand Down
3 changes: 2 additions & 1 deletion sightstone/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,8 @@ def init_gui(sightstone_hook: Sightstone):
dpg.create_viewport(
title=safe_title,
width=WIDTH, height=HEIGHT,
resizable=False
resizable=False,
small_icon="data/icon.ico", large_icon="data/icon.ico"
)
dpg.show_viewport()

Expand Down

0 comments on commit a77fc92

Please sign in to comment.