Skip to content

Commit

Permalink
Fix label
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Nov 18, 2024
1 parent c83631b commit 508c240
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/mpo/dayon/assistant/gui/Assistant.java
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ public void actionPerformed(ActionEvent ev) {
tickLbl.setToolTipText(translate("tick.tooltip"));
final JSlider tickMillisSlider = new JSlider(HORIZONTAL, 50, 1000, captureEngineConfiguration.getCaptureTick());
final Properties tickLabelTable = new Properties(3);
JLabel actualTick = new JLabel(format("%dms", tickMillisSlider.getValue()));
JLabel actualTick = new JLabel(format(" %dms ", tickMillisSlider.getValue()));
tickLabelTable.put(50, new JLabel(translate("min")));
tickLabelTable.put(550, actualTick);
tickLabelTable.put(1000, new JLabel(translate("max")));
Expand Down

0 comments on commit 508c240

Please sign in to comment.