Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
spica198 committed Feb 14, 2025
1 parent 27d2cfb commit a8d1128
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public TextInputDialogWithKeybordShortcut(@NamedArg("defaultValue") final String
keyboardShortcutButton.setOnAction(e -> {//NOSONAR
final RecordKeyboardShortcut rk = new RecordKeyboardShortcut();
Optional<KeyboardShortcutSelectionResult> keyboardShortcut = getKeyboardShortcut(preferenceDirectory, rk);
if (keyboardShortcut.isPresent()) {
if (keyboardShortcut.isPresent()) {//NOSONAR
KeyboardShortcutSelectionResult ksResult = keyboardShortcut.get();
keyboardShortcutLabel.setStyle(" -fx-text-alignment: center; -fx-font-size: 13px; -fx-border-style: solid; -fx-border-width: 1; -fx-border-color: #909090;");
keyboardShortcutLabel.setText(ksResult.getKeyboardShortcut());
Expand Down

0 comments on commit a8d1128

Please sign in to comment.