I just added a new variable to my skin with next code in onload.bsh:
JComboBox captionTransparency_jg = new JComboBox(new Object[]
{ "0", "10", "20", "30", "40", "50", "60", "70", "80", "90", "95", "100" }
);
captionTransparency_jg.setSelectedIndex(6);
If I change the value for an existing album from 60 to 100 and next close jAlbum, there is no question “Save changes?”.
If I next open the project file again, the program shows the old default value 60 instead of the expected value 100.
Next I change the value again into 100 and call the save action via the menu and close jAlbum.
If I next open jAlbum again the saved value 100 is shown and after a next cahnge and close the “Save changes?”. pop-up shows up.
Why is there no “Save changes?”. Pop-up when I closed jAlbum after I changed the value the first time?
Jalbum versioin 15.3.4 and Windows 10.