diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-02-19 22:35:42 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-02-19 22:35:42 +0000 |
| commit | 10900263526639e605edcdb414b5041b987336ef (patch) | |
| tree | 27e868006604f62087cf81a7adfbb769c4612e6e /src | |
| parent | Fixing widget glitches (diff) | |
| download | inkscape-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.cpp | 1 |
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() |
