Compare commits
1 commit
Author | SHA1 | Date | |
---|---|---|---|
daaf00b71d |
2 changed files with 2 additions and 2 deletions
2
main.pyw
2
main.pyw
|
@ -32,7 +32,7 @@ window = GameWindow(
|
||||||
)
|
)
|
||||||
|
|
||||||
# Change l'icône de cette fenêtre
|
# Change l'icône de cette fenêtre
|
||||||
try: window.set_icon(pyglet.image.load(path_image / "/icon/icon.png"))
|
try: window.set_icon(pyglet.image.load(path_image / "icon/icon.png"))
|
||||||
except: pass # NOQA E722
|
except: pass # NOQA E722
|
||||||
|
|
||||||
window.set_minimum_size(720, 480)
|
window.set_minimum_size(720, 480)
|
||||||
|
|
2
setup.py
2
setup.py
|
@ -19,7 +19,7 @@ setup(
|
||||||
executables=[
|
executables=[
|
||||||
Executable(
|
Executable(
|
||||||
"main.pyw",
|
"main.pyw",
|
||||||
icon=path_image / "/icon/icon.ico",
|
icon=path_image / "icon/icon.ico",
|
||||||
base="win32gui",
|
base="win32gui",
|
||||||
target_name="Bataille Navale.exe",
|
target_name="Bataille Navale.exe",
|
||||||
shortcut_name="Bataille Navale",
|
shortcut_name="Bataille Navale",
|
||||||
|
|
Loading…
Reference in a new issue