Fix song/application access: property not method call

ControlSurface exposes song and application as properties, not callable
methods. Replace manager.song() and manager.application() with the correct
attribute access throughout handler, application, browser, and view modules.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-01 13:27:55 +02:00
parent ac6a049516
commit 6fc0a84dfe
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -46,7 +46,7 @@ class BrowserHandler(AbletonOSCHandler):
def _browser(self):
try:
return self.manager.application().browser
return self.manager.application.browser
except Exception:
return None