more space for search box

dbus-notify
Zlatin Balevsky 2022-08-25 13:38:00 +01:00
parent 45ffc0d814
commit 681e0420cd
No known key found for this signature in database
GPG Key ID: A72832072D525E41
2 changed files with 1 additions and 3 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View File

@ -238,8 +238,6 @@ class MainFrameView {
borderLayout()
panel(constraints: BorderLayout.CENTER) {
borderLayout()
label(" " + trans("ENTER_SEARCH")+ " ", constraints: BorderLayout.WEST) // TODO: fix this
def searchFieldModel = new SearchFieldModel(settings, new File(application.context.get("muwire-home")))
JComboBox myComboBox = new SearchField(searchFieldModel)
myComboBox.setAction(searchAction)
@ -248,7 +246,7 @@ class MainFrameView {
}
panel( constraints: BorderLayout.EAST) {
button(text: trans("SEARCH"), searchAction)
button(text: "", icon: imageIcon("/search.png"), toolTipText: trans("SEARCH"), searchAction)
}
}
}