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
@@ -17,7 +17,7 @@ class ApplicationHandler(AbletonOSCHandler):
def _app(self):
try:
return self.manager.application()
return self.manager.application
except Exception:
return None