mirror of
https://github.com/onyx-and-iris/voicemeeter-compact.git
synced 2026-04-18 21:43:31 +00:00
Compare commits
2 Commits
59d2a95ec4
...
v1.8.2
| Author | SHA1 | Date | |
|---|---|---|---|
| 674999a461 | |||
| e5975f0772 |
@@ -1,6 +1,6 @@
|
|||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "voicemeeter-compact"
|
name = "voicemeeter-compact"
|
||||||
version = "1.8.0"
|
version = "1.8.2"
|
||||||
description = "A Compact Voicemeeter Remote App"
|
description = "A Compact Voicemeeter Remote App"
|
||||||
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
|||||||
@@ -123,7 +123,7 @@ class App(tk.Tk):
|
|||||||
|
|
||||||
Destroy all top level frames.
|
Destroy all top level frames.
|
||||||
"""
|
"""
|
||||||
self.target.subject.remove(self)
|
self.target.subject.remove([self.on_pdirty, self.on_ldirty])
|
||||||
self.subject.clear()
|
self.subject.clear()
|
||||||
[
|
[
|
||||||
frame.destroy()
|
frame.destroy()
|
||||||
|
|||||||
@@ -59,8 +59,13 @@ _defaults = {
|
|||||||
"navigation": {"show": True},
|
"navigation": {"show": True},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
if "app" in configuration:
|
if "app" in configuration:
|
||||||
configuration["app"] = _defaults | configuration["app"]
|
for key in _defaults:
|
||||||
|
if key in configuration["app"]:
|
||||||
|
configuration["app"][key] = _defaults[key] | configuration["app"][key]
|
||||||
|
else:
|
||||||
|
configuration["app"][key] = _defaults[key]
|
||||||
else:
|
else:
|
||||||
configuration["app"] = _defaults
|
configuration["app"] = _defaults
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user