From f8040a304bdd4832905819b2c181e483b45dea06 Mon Sep 17 00:00:00 2001 From: Eric Koegel Date: Sat, 19 Nov 2011 09:16:25 +0300 Subject: [PATCH 2/2] Fixed a bug in the icon selection when holding the shift key. --- src/xfdesktop-icon-view.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/xfdesktop-icon-view.c b/src/xfdesktop-icon-view.c index f7241ee..945ea99 100644 --- a/src/xfdesktop-icon-view.c +++ b/src/xfdesktop-icon-view.c @@ -1855,7 +1855,7 @@ xfdesktop_icon_view_select_between(XfdesktopIconView *icon_view, { if(start_row > end_row || (start_row == end_row && start_col > end_col)) { /* flip start and end */ - guint16 tmpr = start_row, tmpc = end_row; + guint16 tmpr = start_row, tmpc = start_col; start_row = end_row; start_col = end_col; -- 1.7.5.4