Skip to content

Commit

Permalink
Fix build_ui script
Browse files Browse the repository at this point in the history
  • Loading branch information
LagoLunatic committed Dec 9, 2023
1 parent 8874373 commit 94a622b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion wwr_ui/build_ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@
command = [
"pyside6-uic",
input_path,
"-o", ui_dir + "uic/ui_%s.py" % base_name
"-o", os.path.join(ui_dir, "uic", "ui_%s.py" % base_name)
]
result = call(command)
2 changes: 1 addition & 1 deletion wwr_ui/uic/ui_cosmetic_tab.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
################################################################################
## Form generated from reading UI file 'cosmetic_tab.ui'
##
## Created by: Qt User Interface Compiler version 6.5.2
## Created by: Qt User Interface Compiler version 6.6.1
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
Expand Down
2 changes: 1 addition & 1 deletion wwr_ui/uic/ui_randomizer_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
################################################################################
## Form generated from reading UI file 'randomizer_window.ui'
##
## Created by: Qt User Interface Compiler version 6.5.2
## Created by: Qt User Interface Compiler version 6.6.1
##
## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################
Expand Down

0 comments on commit 94a622b

Please sign in to comment.