Skip to content

Commit

Permalink
[GTK4] Flood of CSS parsing errors when launching IDE
Browse files Browse the repository at this point in the history
Missing semicolon caused Gtk to spit out many css parsing errors. Adding this semicolon fixes the issue.

Signed-off-by: Joel Majano <[email protected]>
  • Loading branch information
joel-majano authored and akurtakov committed Jul 27, 2022
1 parent 1e429fb commit 5e0d553
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ int setBounds (int x, int y, int width, int height, boolean move, boolean resize
@Override
void setBackgroundGdkRGBA (long context, long handle, GdkRGBA rgba) {
// Form background string
String css = "toolbar {background-color: " + display.gtk_rgba_to_css_string(rgba) + "}";
String css = "toolbar {background-color: " + display.gtk_rgba_to_css_string(rgba) + ";}";

// Cache background color
this.cssBackground = css;
Expand Down

0 comments on commit 5e0d553

Please sign in to comment.