Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
KMail
Commits
a9a5548c
Commit
a9a5548c
authored
Oct 27, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Bug 426943 - Composer settings dialog: Word wrap at column is limited to 78
BUG: 426943 FIXED-IN: 5.16.0
parent
3b7f8139
Pipeline
#38830
passed with stage
in 28 minutes and 42 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/configuredialog/configurecomposerpage.cpp
src/configuredialog/configurecomposerpage.cpp
+1
-1
No files found.
src/configuredialog/configurecomposerpage.cpp
View file @
a9a5548c
...
...
@@ -225,7 +225,7 @@ ComposerPageGeneralTab::ComposerPageGeneralTab(QWidget *parent)
mWordWrapCheck
->
setWhatsThis
(
helpText
);
mWrapColumnSpin
=
new
QSpinBox
(
this
);
mWrapColumnSpin
->
setMaximum
(
78
/*max*/
);
mWrapColumnSpin
->
setMaximum
(
200
/*max*/
);
mWrapColumnSpin
->
setMinimum
(
30
/*min*/
);
mWrapColumnSpin
->
setSingleStep
(
1
/*step*/
);
mWrapColumnSpin
->
setValue
(
78
/*init*/
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment