Skip to content

Commit

Permalink
fix: complete wine refactor
Browse files Browse the repository at this point in the history
Looks like some renames didn't get picked up in the first wave
  • Loading branch information
ctrlaltf24 authored and thw26 committed Oct 23, 2024
1 parent bb3e2d5 commit 1fc367a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ou_dedetai/tui_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -486,10 +486,10 @@ def winetricks_menu_select(self, choice):
self.go_to_main_menu()
elif choice == "Install d3dcompiler":
self.reset_screen()
wine.installD3DCompiler()
wine.install_d3d_compiler()
elif choice == "Install Fonts":
self.reset_screen()
wine.installFonts()
wine.install_fonts()
self.go_to_main_menu()
elif choice == "Set Renderer":
self.reset_screen()
Expand Down Expand Up @@ -566,7 +566,7 @@ def utilities_menu_select(self, choice):
self.screen_q.put(self.stack_menu(1, self.appimage_q, self.appimage_e, question, appimage_choices))
elif choice == "Install ICU":
self.reset_screen()
wine.installICUDataFiles()
wine.install_icu_data_files()
self.go_to_main_menu()
elif choice.endswith("Logging"):
self.reset_screen()
Expand Down

0 comments on commit 1fc367a

Please sign in to comment.