summaryrefslogtreecommitdiffstats
path: root/src/desktop.cpp
diff options
context:
space:
mode:
authorThomas Holder <thomas@thomas-holder.de>2018-09-12 18:36:39 +0000
committerThomas Holder <thomas@thomas-holder.de>2018-09-12 18:37:17 +0000
commit84bec2d6dcb2d80abe89d0f55aad8281be1f75e1 (patch)
treefe296d03b3c5b84b97a3abf96851b9e27bfae8fd /src/desktop.cpp
parentfix object-set-test crash (diff)
downloadinkscape-84bec2d6dcb2d80abe89d0f55aad8281be1f75e1.tar.gz
inkscape-84bec2d6dcb2d80abe89d0f55aad8281be1f75e1.zip
make /options/yaxisdown true the default
Diffstat (limited to 'src/desktop.cpp')
-rw-r--r--src/desktop.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/desktop.cpp b/src/desktop.cpp
index bec4bd68f..b4051f66d 100644
--- a/src/desktop.cpp
+++ b/src/desktop.cpp
@@ -255,7 +255,7 @@ SPDesktop::init (SPNamedView *nv, SPCanvas *aCanvas, Inkscape::UI::View::EditWid
/* Connect event for page resize */
- if (!prefs->getBool("/options/yaxisdown", false)) {
+ if (!prefs->getBool("/options/yaxisdown", true)) {
_doc2dt[3] = -1;
_doc2dt[5] = document->getHeight().value("px");
}
@@ -1683,7 +1683,7 @@ SPDesktop::onDocumentURISet (gchar const* uri)
void
SPDesktop::onDocumentResized (gdouble width, gdouble height)
{
- if (!Inkscape::Preferences::get()->getBool("/options/yaxisdown", false)) {
+ if (!Inkscape::Preferences::get()->getBool("/options/yaxisdown", true)) {
_doc2dt[5] = height;
}
sp_canvas_item_affine_absolute (SP_CANVAS_ITEM (drawing), _doc2dt);