From 6e4816d9b9f1eba87943f87cc7a42347a2df3ea9 Mon Sep 17 00:00:00 2001 From: Hanjin Liu Date: Thu, 22 Aug 2024 11:11:43 +0900 Subject: [PATCH] newlines --- src/widgets/preference_dialog.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/widgets/preference_dialog.py b/src/widgets/preference_dialog.py index 14b3826..ddeef67 100644 --- a/src/widgets/preference_dialog.py +++ b/src/widgets/preference_dialog.py @@ -36,7 +36,7 @@ def _init_ui(self, preference: Preference): self._hide_title_bar = QtW.QCheckBox("Hide title bar") self._hide_title_bar.setToolTip( - "This will hide the title bar of the CliX widget, just like the built-in " + "This will hide the title bar of the CliX widget, just like the built-in \n" "command line." ) self._hide_title_bar.setChecked(preference.hide_title_bar) @@ -44,7 +44,7 @@ def _init_ui(self, preference: Preference): self._show_label = QtW.QCheckBox("Show \"CliX\" label on the left") self._show_label.setToolTip( - "This will show the \"CliX\" label on the left of the CliX widget command " + "This will show the \"CliX\" label on the left of the CliX widget command \n" "line." ) self._show_label.setChecked(preference.show_label) @@ -52,7 +52,7 @@ def _init_ui(self, preference: Preference): self._enter_completion = QtW.QCheckBox("Enable Enter key for completion") self._enter_completion.setToolTip( - "Pressing Enter key will select the completion suggestion, instead of " + "Pressing Enter key will select the completion suggestion, instead of \n" "executing the command." ) self._enter_completion.setChecked(preference.enter_completion) @@ -60,8 +60,8 @@ def _init_ui(self, preference: Preference): self._auto_focus = QtW.QCheckBox("Focus on CliX widget when typing") self._auto_focus.setToolTip( - "Automatically focus on the CliX widget when typing. This option is useful " - "when you have to go back and forth between the CliX widget and the main " + "Automatically focus on the CliX widget when typing. This option is useful \n" + "when you have to go back and forth between the CliX widget and the main \n" "window." ) self._auto_focus.setChecked(preference.auto_focus)