mirror of https://github.com/zlatinb/muwire
trim() the contents of the contact chooser at the end
parent
11ce766af1
commit
8dd4880299
|
@ -28,7 +28,7 @@ class ContactChooser extends JComboBox{
|
|||
def lastPOP = chooserEditor.getItem()
|
||||
if (lastPOP == null)
|
||||
return rv
|
||||
lastPOP = chooserModel.findByName(lastPOP.toString())
|
||||
lastPOP = chooserModel.findByName(lastPOP.toString().trim())
|
||||
if (lastPOP != null)
|
||||
rv << lastPOP
|
||||
rv
|
||||
|
|
Loading…
Reference in New Issue