Skip to content

Commit

Permalink
Align GUI history scroll buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
mikera committed Jan 4, 2025
1 parent 4814cd9 commit e92e0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion convex-gui/src/main/java/convex/gui/repl/REPLPanel.java
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ public REPLPanel(Convex convex) {
inputPanel.add(inputScrollPane,"dock center");

JPanel historyPanel=new JPanel();
historyPanel.setLayout(new MigLayout("wrap 1"));
historyPanel.setLayout(new MigLayout("wrap 1,aligny center"));
historyPanel.add(ActionButton.build(0xe316, e->scrollHistory(-1),"Previous command in history"));
historyPanel.add(ActionButton.build(0xe313, e->scrollHistory(1),"Next command in history"));
inputPanel.add(historyPanel,"dock east");
Expand Down

0 comments on commit e92e0c2

Please sign in to comment.