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
Scott Petrovic
Krita
Commits
91000f14
Commit
91000f14
authored
Jan 13, 2016
by
Halla Rempt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable, don't hide the checkboxes
parent
08e1ed1b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
krita/plugins/formats/png/kis_png_export.cc
krita/plugins/formats/png/kis_png_export.cc
+3
-3
No files found.
krita/plugins/formats/png/kis_png_export.cc
View file @
91000f14
...
...
@@ -153,15 +153,15 @@ KisImportExportFilter::ConversionStatus KisPNGExport::convert(const QByteArray&
wdg
->
compressionLevel
->
setValue
(
cfg
.
getInt
(
"compression"
,
9
));
wdg
->
compressionLevel
->
setRange
(
1
,
9
,
0
);
wdg
->
alpha
->
set
Visi
ble
(
isThereAlpha
);
wdg
->
alpha
->
set
Ena
ble
d
(
isThereAlpha
);
wdg
->
tryToSaveAsIndexed
->
setVisible
(
!
isThereAlpha
);
wdg
->
bnTransparencyFillColor
->
setEnabled
(
!
wdg
->
alpha
->
isChecked
());
wdg
->
chkSRGB
->
set
Visi
ble
(
sRGB
);
wdg
->
chkSRGB
->
set
Ena
ble
d
(
sRGB
);
wdg
->
chkSRGB
->
setChecked
(
cfg
.
getBool
(
"saveSRGBProfile"
,
true
));
wdg
->
chkForceSRGB
->
set
Visi
ble
(
!
sRGB
);
wdg
->
chkForceSRGB
->
set
Ena
ble
d
(
!
sRGB
);
wdg
->
chkForceSRGB
->
setChecked
(
cfg
.
getBool
(
"forceSRGB"
,
false
));
QStringList
rgb
=
cfg
.
getString
(
"transparencyFillcolor"
,
"0,0,0"
).
split
(
','
);
...
...
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