Skip to content

Commit

Permalink
Merge pull request #17 from Gemmstone/owner-development
Browse files Browse the repository at this point in the history
fixed names in models not appearing when having a dot (.)
  • Loading branch information
Gemmstone authored Aug 13, 2024
2 parents b6e89e0 + 67b8280 commit fa1faa6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Core/imageGallery.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def rename_model(self):
if ok:
os.rename(
os.path.join(self.res_dir, "Models", self.modelType, self.modelName),
os.path.join(self.res_dir, "Models", self.modelType, modelName)
os.path.join(self.res_dir, "Models", self.modelType, modelName.replace(".", "_"))
)
self.setTitle(modelName)
self.modelName = modelName
Expand Down
2 changes: 1 addition & 1 deletion Data/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"volume threshold": 17,
"scream threshold": 65,
"delay threshold": 4,
"microphone selection": 4,
"microphone selection": 5,
"microphone mute": false,
"background color": 0,
"export mode": 0,
Expand Down
2 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@

os.environ['QTWEBENGINE_REMOTE_DEBUGGING'] = '4864'
os.environ['QTWEBENGINE_CHROMIUM_FLAGS'] = '--no-sandbox'
os.environ["QT_SCALE_FACTOR"] = "1.0"


if os.name == 'nt':
from ctypes import windll
Expand Down

0 comments on commit fa1faa6

Please sign in to comment.