Menu

#1555 JLib plugin does not save properties correctly

normal bug
closed-fixed
5
2003-03-26
2003-03-09
Hladik
No

Hello,

I think there's a silly bug that prevent the
delegation mechanism from working properly.
In
"JLibOptionPane.java" the code for the _save() method
is:

jEdit.setBooleanProperty("options.jlib.save.global.title",
saveGlobal.isSelected());
jEdit.setBooleanProperty("options.jlib.save.project.title",
saveByProject.isSelected());
jEdit.setBooleanProperty("options.jlib.save.session.title",
saveBySession.isSelected());

While it should
be:

jEdit.setBooleanProperty("options.jlib.save.global",
saveGlobal.isSelected());
jEdit.setBooleanProperty("options.jlib.save.project",
saveByProject.isSelected());
jEdit.setBooleanProperty("options.jlib.save.session",
saveBySession.isSelected());

Regards
Amedeo

Discussion

  • Rob Fletcher

    Rob Fletcher - 2003-03-26

    Logged In: YES
    user_id=489393

    fixed in CVS

     
  • Rob Fletcher

    Rob Fletcher - 2003-03-26
    • status: open --> closed-fixed
     

Log in to post a comment.