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 <noreply@anthropic.com>
This commit is contained in:
2026-01-15 21:30:51 -07:00
parent 83a6a1ee8e
commit ec19b234bb

View File

@@ -253,6 +253,7 @@ ZoneEditor.prototype = {
'border-radius: 4px;'
);
this.editorOverlay.add_child(this.dimensionLabel);
}
}
return Clutter.EVENT_STOP;