diff options
| author | Krzysztof Kosi??ski <tweenk.pl@gmail.com> | 2014-03-08 16:02:21 +0000 |
|---|---|---|
| committer | Krzysztof KosiĆski <tweenk.pl@gmail.com> | 2014-03-08 16:02:21 +0000 |
| commit | cf86d4abd17be00d1d148258053d9a1193e3c93d (patch) | |
| tree | 42f9db74b83b6fcfd842dec3aae29582731f1c45 /src/ui/tools/text-tool.cpp | |
| parent | Update attributes unit test, expand style unit test and fix bug found. (diff) | |
| download | inkscape-cf86d4abd17be00d1d148258053d9a1193e3c93d.tar.gz inkscape-cf86d4abd17be00d1d148258053d9a1193e3c93d.zip | |
Fix crashes caused by the desktop's query_style signal being called before
the selection's changed signal was processed in the text tool.
Also fix similar crashes in the gradient dragger.
Fixes LP #1271004.
Fixed bugs:
- https://launchpad.net/bugs/1271004
(bzr r13129)
Diffstat (limited to 'src/ui/tools/text-tool.cpp')
| -rw-r--r-- | src/ui/tools/text-tool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/tools/text-tool.cpp b/src/ui/tools/text-tool.cpp index bf37937c4..ac830fe6b 100644 --- a/src/ui/tools/text-tool.cpp +++ b/src/ui/tools/text-tool.cpp @@ -180,10 +180,10 @@ void TextTool::setup() { this->shape_editor->set_item(item, SH_KNOTHOLDER); } - this->sel_changed_connection = sp_desktop_selection(desktop)->connectChanged( + this->sel_changed_connection = sp_desktop_selection(desktop)->connectChangedFirst( sigc::mem_fun(*this, &TextTool::_selectionChanged) ); - this->sel_modified_connection = sp_desktop_selection(desktop)->connectModified( + this->sel_modified_connection = sp_desktop_selection(desktop)->connectModifiedFirst( sigc::mem_fun(*this, &TextTool::_selectionModified) ); this->style_set_connection = desktop->connectSetStyle( |
