summaryrefslogtreecommitdiffstats
path: root/src/ui/widget/layer-selector.cpp
diff options
context:
space:
mode:
authorJohn Smith <john.smith7545@yahoo.com>2012-11-19 04:05:55 +0000
committerJohn Smith <john.smith7545@yahoo.com>2012-11-19 04:05:55 +0000
commitd6ac14202d3983a8bb19d66c6a599f9b77f464bc (patch)
tree499502ea8310b24084ede811f9d1898c3de86a22 /src/ui/widget/layer-selector.cpp
parentUI. Fix for Bug #1071104 (Failure to open a browse window when choosing Expor... (diff)
downloadinkscape-d6ac14202d3983a8bb19d66c6a599f9b77f464bc.tar.gz
inkscape-d6ac14202d3983a8bb19d66c6a599f9b77f464bc.zip
Revert for 166691 : Changing layer order does not update layer selector - Revert change to performance issues
(bzr r11883)
Diffstat (limited to 'src/ui/widget/layer-selector.cpp')
-rw-r--r--src/ui/widget/layer-selector.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ui/widget/layer-selector.cpp b/src/ui/widget/layer-selector.cpp
index c06f70185..fbb9c0e24 100644
--- a/src/ui/widget/layer-selector.cpp
+++ b/src/ui/widget/layer-selector.cpp
@@ -241,7 +241,11 @@ private:
void LayerSelector::_layersChanged()
{
if (_desktop) {
- _selectLayer(_desktop->currentLayer());
+ /*
+ * This code fixes #166691 but causes issues #1066543 and #1080378.
+ * Comment out until solution found.
+ */
+ //_selectLayer(_desktop->currentLayer());
}
}