UI cleaning
This commit is contained in:
parent
6a9a0f32aa
commit
0a45d1fbf4
@ -11,7 +11,7 @@ import java.awt.event.KeyEvent;
|
||||
*/
|
||||
public class MainApp {
|
||||
|
||||
public static final String APP_VERSION = "0.0.5";
|
||||
public static final String APP_VERSION = "0.0.6";
|
||||
|
||||
public static void main(String[] args) {
|
||||
// Set application name for X11/Wayland WM_CLASS
|
||||
|
||||
@ -424,7 +424,7 @@ public class MainWindow extends JFrame {
|
||||
toolBar.addSeparator();
|
||||
|
||||
// Button for BRIEF mode
|
||||
JButton btnBrief = new JButton("☰ Brief");
|
||||
JButton btnBrief = new JButton("☰");
|
||||
btnBrief.setToolTipText("Brief mode - multiple columns (Ctrl+F1)");
|
||||
btnBrief.setFocusable(false);
|
||||
btnBrief.addActionListener(e -> {
|
||||
@ -434,7 +434,7 @@ public class MainWindow extends JFrame {
|
||||
});
|
||||
|
||||
// Button for FULL mode
|
||||
JButton btnFull = new JButton("▤ Full");
|
||||
JButton btnFull = new JButton("▤");
|
||||
btnFull.setToolTipText("Full mode - full information (Ctrl+F2)");
|
||||
btnFull.setFocusable(false);
|
||||
btnFull.addActionListener(e -> {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user