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
Graphics
Okular
Commits
6d2623a0
Commit
6d2623a0
authored
Sep 24, 2021
by
Nate Graham
Browse files
Merge branch 'release/21.08'
parents
a00f53b8
51d91bfd
Pipeline
#82489
passed with stage
in 10 minutes and 18 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
generators/poppler/generator_pdf.cpp
View file @
6d2623a0
...
...
@@ -107,6 +107,11 @@ public:
m_scaleMode
->
setToolTip
(
i18n
(
"Scaling mode for the printed pages"
));
printBackendLayout
->
addRow
(
i18n
(
"Scale mode:"
),
m_scaleMode
);
// If the user selects a scaling mode that requires the use of the
// "Force rasterization" feature, enable it automatically so they don't
// have to 1) know this and 2) do it manually
connect
(
m_scaleMode
,
QOverload
<
int
>::
of
(
&
QComboBox
::
currentIndexChanged
),
this
,
[
=
](
int
index
)
{
m_forceRaster
->
setChecked
(
index
!=
0
);
});
layout
->
addWidget
(
formWidget
);
layout
->
addStretch
(
1
);
...
...
Write
Preview
Supports
Markdown
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