Skip to content

Commit

Permalink
Limit window title length on creation in BlRustWindowingHost.class.st
Browse files Browse the repository at this point in the history
67638 characters of json string was too much :)
  • Loading branch information
StephanEggermont committed May 10, 2024
1 parent fadef36 commit be1c530
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BlocHost-Glutin/BlRustWindowingHost.class.st
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ BlRustWindowingHost >> createWindowSpaceFor: aSpace [
eventLoop := RustWindowingEventFetcher default eventLoop.

windowBuilder := eventLoop windowBuilder
title: aSpace title;
title: (aSpace title contractTo: 500);
extent: aSpace extent;
withDecorations: aSpace borderless not;
withTransparency: aSpace borderless;
Expand Down

0 comments on commit be1c530

Please sign in to comment.