diff options
| author | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-07-28 00:24:25 +0000 |
|---|---|---|
| committer | Jabier Arraiza <jabier.arraiza@marker.es> | 2019-07-28 08:55:03 +0000 |
| commit | c9251db45f46f8c036b3b425c1ce6931b1e9cd72 (patch) | |
| tree | 5f5c3678e5ad13f9bbf2a34f3745632f28ba9311 /src/object | |
| parent | Fix coding style (diff) | |
| download | inkscape-c9251db45f46f8c036b3b425c1ce6931b1e9cd72.tar.gz inkscape-c9251db45f46f8c036b3b425c1ce6931b1e9cd72.zip | |
Fix some issues with inverse coordinates pointed by Maren
Diffstat (limited to 'src/object')
| -rw-r--r-- | src/object/sp-namedview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/object/sp-namedview.cpp b/src/object/sp-namedview.cpp index c22184d52..7fed2b9b5 100644 --- a/src/object/sp-namedview.cpp +++ b/src/object/sp-namedview.cpp @@ -1124,8 +1124,8 @@ bool SPNamedView::getGuides() g_assert(this->getRepr() != nullptr); unsigned int v; unsigned int set = sp_repr_get_boolean(this->getRepr(), "showguides", &v); - if (!set) { // hide guides if not specified, for backwards compatibility - v = FALSE; + if (!set) { // show guides if not specified, for backwards compatibility + v = TRUE; } return v; |
