search icon added
This commit is contained in:
parent
8d012dd14f
commit
61b6269a5e
@ -450,6 +450,15 @@ public class MainWindow extends JFrame {
|
||||
|
||||
toolBar.addSeparator();
|
||||
|
||||
// Search button
|
||||
JButton btnSearch = new JButton("🔍");
|
||||
btnSearch.setToolTipText("Hledat soubory (Alt+F7)");
|
||||
btnSearch.setFocusable(false);
|
||||
btnSearch.addActionListener(e -> showSearchDialog());
|
||||
toolBar.add(btnSearch);
|
||||
|
||||
toolBar.addSeparator();
|
||||
|
||||
// Load custom shortcuts from config
|
||||
List<AppConfig.ToolbarShortcut> shortcuts = config.getToolbarShortcuts();
|
||||
int btnSize = config.getToolbarButtonSize();
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user