Skip to content

Commit 6ae2d4e

Browse files
committed
Update python_easy_chess_gui.py
* Remove keep_on_top window parameter after a board flip as this would temporarily hide the max_time and max_depth popup box.
1 parent 56f2609 commit 6ae2d4e

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

python_easy_chess_gui.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252

5353

5454
APP_NAME = 'Python Easy Chess GUI'
55-
APP_VERSION = 'v0.69'
55+
APP_VERSION = 'v0.70'
5656
BOX_TITLE = '{} {}'.format(APP_NAME, APP_VERSION)
5757

5858

@@ -1943,8 +1943,7 @@ def main_loop(self):
19431943
self.window = sg.Window('{} {}'.format(APP_NAME, APP_VERSION),
19441944
self.black_layout if self.is_user_white else self.white_layout,
19451945
default_button_element_size=(12, 1),
1946-
auto_size_buttons=False, location=(loc[0], loc[1]),
1947-
keep_on_top = True, icon='')
1946+
auto_size_buttons=False, location=(loc[0], loc[1]), icon='')
19481947
self.is_user_white = not self.is_user_white
19491948

19501949
self.update_labels_and_game_tags(human='Human',

0 commit comments

Comments
 (0)