Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
KMail
Commits
a9a5548c
Commit
a9a5548c
authored
Oct 27, 2020
by
Laurent Montel
😁
Browse files
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
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