summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMarc Jeanmougin <marc@jeanmougin.fr>2015-07-13 22:23:14 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2015-07-13 22:23:14 +0000
commita3d09e2486cf76da1633c15fd40c2c39a0c06a4a (patch)
tree990c21095b02768d699d4bc552e0113b4e302a9c /src
parentDon't allow zero values for width/height and corresponding viewBox numbers. (diff)
downloadinkscape-a3d09e2486cf76da1633c15fd40c2c39a0c06a4a.tar.gz
inkscape-a3d09e2486cf76da1633c15fd40c2c39a0c06a4a.zip
fix "arrange" tool (typo)
Fixed bugs: - https://launchpad.net/bugs/1473711 (bzr r14244)
Diffstat (limited to 'src')
-rw-r--r--src/ui/dialog/grid-arrange-tab.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/dialog/grid-arrange-tab.cpp b/src/ui/dialog/grid-arrange-tab.cpp
index c44f66a4d..ccd23a572 100644
--- a/src/ui/dialog/grid-arrange-tab.cpp
+++ b/src/ui/dialog/grid-arrange-tab.cpp
@@ -311,7 +311,7 @@ g_print("\n row = %f col = %f selection x= %f selection y = %f", total_row_h
GSList *current_row = NULL;
col_cnt = 0;
- for(;it!=sorted.end()&&col<NoOfCols;it++) {
+ for(;it!=sorted.end()&&col_cnt<NoOfCols;it++) {
current_row = g_slist_append (current_row, *it);
col_cnt++;
}