@@ -181,7 +181,7 @@ def load_theme(self) -> None:
181181
182182 def build_game (self ) -> None :
183183 do_build = messagebox .askyesno (
184- "Build Tools | ABS Engine " ,
184+ "Build Tools" ,
185185 "This will build to the folder containing the .absp project file. Do you want to continue?" ,
186186 )
187187
@@ -247,19 +247,19 @@ def poll_build() -> None:
247247
248248 if process .exitcode == 0 :
249249 logger ("Build Tools: Build completed" )
250- messagebox .showinfo ("Build Tools | ABS Engine " , "The build has been completed." )
250+ messagebox .showinfo ("Build Tools" , "The build has been completed." )
251251 else :
252252 logger ("Build Tools: Build failed" , status = LoggerStatus .WARNING )
253253 messagebox .showerror (
254- "Build Tools | ABS Engine " ,
254+ "Build Tools" ,
255255 "The build failed. Check the console/log output for details." ,
256256 )
257257
258258 self .root .after (200 , poll_build )
259259
260260 def game_settings (self ) -> None :
261261 self .game_settings_popup = tk .Toplevel (self .root , height = 150 )
262- self .game_settings_popup .wm_title ("Game Settings | ABS Engine " )
262+ self .game_settings_popup .wm_title ("Game Settings" )
263263 self .game_settings_popup .resizable (False , False )
264264
265265 self .game_settings_dimensions_section = ttk .LabelFrame (
@@ -396,7 +396,7 @@ def view_entity(self, entity_list: tk.Listbox) -> None:
396396 selected_item = entity_list .get (entity_list .curselection ()[0 ]) # type: ignore[no-untyped-call]
397397
398398 self .view_popup = tk .Toplevel (self .root )
399- self .view_popup .wm_title ("Entity Data | ABS Engine " )
399+ self .view_popup .wm_title ("Entity Data" )
400400 self .view_popup .resizable (False , False )
401401
402402 fields = {
0 commit comments