summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2019-02-19 22:35:42 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2019-02-19 22:35:42 +0000
commit10900263526639e605edcdb414b5041b987336ef (patch)
tree27e868006604f62087cf81a7adfbb769c4612e6e /src
parentFixing widget glitches (diff)
downloadinkscape-10900263526639e605edcdb414b5041b987336ef.tar.gz
inkscape-10900263526639e605edcdb414b5041b987336ef.zip
Fix window positioning in Linux odf LPEDialog
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/livepatheffect-add.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/ui/dialog/livepatheffect-add.cpp b/src/ui/dialog/livepatheffect-add.cpp
index 7ed1e6d76..ccaafdf62 100644
--- a/src/ui/dialog/livepatheffect-add.cpp
+++ b/src/ui/dialog/livepatheffect-add.cpp
@@ -199,6 +199,7 @@ LivePathEffectAdd::LivePathEffectAdd()
int height;
window->get_size(width, height);
_LPEDialogSelector->resize(std::min(width - 300, 1440), std::min(height - 300, 900));
+ _LPEDialogSelector->set_transient_for(*window);
_LPEDialogSelector->show_all_children();
}
const LivePathEffect::EnumEffectData<LivePathEffect::EffectType> *LivePathEffectAdd::getActiveData()