I think the bug is easily spotted. It is in RCMain.java:
[code]
disablePopupItem.addSelectionListener(new SelectionAdapter() {
@Override
public void widgetSelected(SelectionEvent e) {
properties.setProperty("popups_enabled", silentItem.getSelection());
}
});[/code]
properties.setProperty("popups_enabled", silentItem.getSelection());
should be
properties.setProperty("popups_enabled", !disablePopupItem.getSelection());
Additionally, Mr. Slidey (MessageSlideShell) completely ignores the "popups_enabled" property.
I've checked out https://azsmrc.svn.sourceforge.net/svnroot/azsmrc/trunk/azsmrc revision 1688.
The same problem in version 0.9.9
The same in beta version: AzSMRC_0.9.9.20081122
fixed in Rev 1702