diff options
| author | Joel Holdsworth <joel@airwebreathe.org.uk> | 2007-12-22 21:06:55 +0000 |
|---|---|---|
| committer | joelholdsworth <joelholdsworth@users.sourceforge.net> | 2007-12-22 21:06:55 +0000 |
| commit | 9e79fe7d4b35be5c4847686c2d4babf9daa53c04 (patch) | |
| tree | ddd44e2a3cba329dc94360b6be9d0280d6160b32 /src/ui/dialog/print.cpp | |
| parent | Fix typo in an array causing a write off the end. Causes bug if no (diff) | |
| download | inkscape-9e79fe7d4b35be5c4847686c2d4babf9daa53c04.tar.gz inkscape-9e79fe7d4b35be5c4847686c2d4babf9daa53c04.zip | |
Fixed the parenting of the print dialog so that it cannot fall behind the main inkscape desktop window
(bzr r4278)
Diffstat (limited to 'src/ui/dialog/print.cpp')
| -rw-r--r-- | src/ui/dialog/print.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/print.cpp b/src/ui/dialog/print.cpp index 9165167f4..6740247cd 100644 --- a/src/ui/dialog/print.cpp +++ b/src/ui/dialog/print.cpp @@ -158,10 +158,10 @@ Print::Print(SPDocument *doc, SPItem *base) : } Gtk::PrintOperationResult -Print::run(Gtk::PrintOperationAction action) +Print::run(Gtk::PrintOperationAction action, Gtk::Window& parent) { Gtk::PrintOperationResult res; - res = _printop->run (action); + res = _printop->run (action, parent); return res; } |
