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
Office
Calligra
Commits
e07ccbb4
Commit
e07ccbb4
authored
Nov 13, 2012
by
Inge Wallin
Browse files
Fix bug 309109: CWOP: Opening a document sets it to Modified
BUG: 309109
parent
c463f388
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/dockers/styledocker/StrokeFillWidget.cpp
View file @
e07ccbb4
...
...
@@ -170,7 +170,12 @@ void StrokeFillWidget::updateWidget(KoShapeStrokeModel *stroke, KoShapeBackgroun
{
m_preview
->
update
(
stroke
,
fill
);
updateStyleButtons
(
activeStyle
);
// We don't want the opacity slider to send any signals when it's only initialized.
// Otherwise an undo record is created.
m_opacity
->
blockSignals
(
true
);
m_opacity
->
setValue
(
opacity
);
m_opacity
->
blockSignals
(
false
);
m_actionColor
->
setCurrentColor
(
currentColor
);
}
...
...
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