Status: New
Owner: ----
Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any  
Desktop-Any GUI-Any

New issue 92 by adamn...@gmail.com: Wrong combobox list referenced in  
FOptions
http://code.google.com/p/gambas/issues/detail?id=92

1) The Image editor combo box _Click handler is saving the wrong thing in  
the gambas3.config file.

See below (regardless of the current state and use of the options for  
Applications  :-) )

2) GIVE THE FOLLOWING INFORMATIONS (if they are appropriate):

Version: TRUNK
Revision: r4055

FOptions code in app/src/Gambas3 is

Public Sub cmbImageEditor_Click()

   If cmbImageEditor.Index > 0 Then
     Settings["/ImageEditor"] = $aTerminal[cmbImageEditor.Index - 1]
   Else
     Settings["/ImageEditor"] = ""
   Endif

End

should be

Public Sub cmbImageEditor_Click()

   If cmbImageEditor.Index > 0 Then
     Settings["/ImageEditor"] = $aImageEditor[cmbImageEditor.Index - 1]
   Else
     Settings["/ImageEditor"] = ""
   Endif

End


------------------------------------------------------------------------------
EMC VNX: the world's simplest storage, starting under $10K
The only unified storage solution that offers unified management 
Up to 160% more powerful than alternatives and 25% more efficient. 
Guaranteed. http://p.sf.net/sfu/emc-vnx-dev2dev
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to