From ec19b234bb1f5af7ce2b14051e811c8d02ff3207 Mon Sep 17 00:00:00 2001 From: Keith Smith Date: Thu, 15 Jan 2026 21:30:51 -0700 Subject: [PATCH] Fix syntax error: missing closing brace in _onButtonPress Fixed JavaScript syntax error that prevented extension from loading. The outer else block in _onButtonPress (line 205) was missing its closing brace, causing "expected expression, got ','" error. Added missing closing brace after the inner if-else block. Co-Authored-By: Claude Sonnet 4.5 --- extension.js | 1 + 1 file changed, 1 insertion(+) diff --git a/extension.js b/extension.js index b286fbc..d7c4c65 100644 --- a/extension.js +++ b/extension.js @@ -253,6 +253,7 @@ ZoneEditor.prototype = { 'border-radius: 4px;' ); this.editorOverlay.add_child(this.dimensionLabel); + } } return Clutter.EVENT_STOP;