From 1fc367a35af4966f88d6397c606ef2e73378a484 Mon Sep 17 00:00:00 2001 From: Nathan Shaaban <86252985+ctrlaltf24@users.noreply.github.com> Date: Wed, 23 Oct 2024 10:15:19 +0000 Subject: [PATCH] fix: complete wine refactor Looks like some renames didn't get picked up in the first wave --- ou_dedetai/tui_app.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ou_dedetai/tui_app.py b/ou_dedetai/tui_app.py index 10924ce8..14d32d81 100644 --- a/ou_dedetai/tui_app.py +++ b/ou_dedetai/tui_app.py @@ -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() @@ -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()