소스 검색

troop selection: add success message

Bastien Sevajol 6 년 전
부모
커밋
9b09899640
1개의 변경된 파일7개의 추가작업 그리고 0개의 파일을 삭제
  1. 7 0
      opencombat/strategy/selection/gui.py

+ 7 - 0
opencombat/strategy/selection/gui.py 파일 보기

@@ -193,6 +193,13 @@ class SelectTroopsGui(Gui):
193 193
             )
194 194
             with open(troops_file_path, 'w+') as file:
195 195
                 file.write(troops_xml)
196
+
197
+            messagebox.showinfo(
198
+                'Troops file generated',
199
+                'Troops file successfully generate at "{}"'.format(
200
+                    troops_file_path,
201
+                )
202
+            )
196 203
         else:
197 204
             messagebox.showinfo(
198 205
                 'Missing information',