Skip to content

Commit

Permalink
Fix phazor found spam
Browse files Browse the repository at this point in the history
  • Loading branch information
C0rn3j committed Mar 3, 2025
1 parent f796666 commit d030439
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/tauon/t_modules/t_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -23082,6 +23082,7 @@ def __init__(self, tauon: Tauon) -> None:
self.system = tauon.system
self.macos = tauon.macos
self.msys = tauon.msys
self.phazor_found = phazor_exists(tauon.pctl)
self.init2done = False

self.about_image = asset_loader(tauon.bag, tauon.bag.loaded_asset_dc, "v4-a.png")
Expand Down Expand Up @@ -23456,7 +23457,7 @@ def audio(self, x0: int, y0: int, w0: int, h0: int) -> None:
colour = self.colours.box_sub_text

# if system == "Linux":
if not phazor_exists(self.tauon.pctl):
if not self.phazor_found:
x += round(20 * self.gui.scale)
self.ddt.text((x, y - 25 * self.gui.scale), _("PHAzOR DLL not found!"), colour, 213)

Expand Down

0 comments on commit d030439

Please sign in to comment.