Skip to content

Commit

Permalink
Swap visits and engine command in titlebar (featurecat#917)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hiraoka authored and kaorahi committed Dec 31, 2023
1 parent d1eef09 commit 8a72479
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/featurecat/lizzie/gui/MainFrame.java
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ private void updateTitleInEDT() {
Utils.mustBeEventDispatchThread();
StringBuilder sb = new StringBuilder(DEFAULT_TITLE);
sb.append(playerTitle);
sb.append(" [" + Lizzie.leelaz.nicknameOrEngineCommand() + "]");
sb.append(visitsString);
sb.append(" [" + Lizzie.leelaz.nicknameOrEngineCommand() + "]");
setTitle(sb.toString());
}

Expand Down

0 comments on commit 8a72479

Please sign in to comment.