Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Intellij GUI Designer doesn't generate $$$setupUI$$$ method

I'm working on something in Intellij-ScalaPlugin and I want to modify something in the Settings Panel. I changed the text from an existing label and after compiling the project the $$$setupUI$$$ method is unchanged.

GUI Designer settings

I'm trying to change the text from the label shown in this image, but after compilation the $$$setupUI$$$ method is not changed. I'm trying to change the text from the label shown in this image

What can I do in order to fix this problem?

like image 698
Maris Avatar asked Jun 17 '26 11:06

Maris


1 Answers

Configure GUI Designer to generate source code instead of instrumenting binary classes:

designer

For this specific plug-in project you will also need to disable Use SBT shell for build and import option.

like image 108
CrazyCoder Avatar answered Jun 20 '26 01:06

CrazyCoder