Disable extend_selection call.
authorJohn Darrington <john@darrington.wattle.id.au>
Sat, 25 Jul 2009 14:27:30 +0000 (16:27 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sat, 25 Jul 2009 14:27:30 +0000 (16:27 +0200)
Temporarily disable the call to psppire_sheet_extend_selection
since it interferes with the active cell border and selection
is currently not working anyway.

lib/gtk-contrib/psppire-sheet.c

index 29eba9369167b248b1c2c300bbad2dae2a082b86..be4cd24323e4a33946a914908dd510326e574607 100644 (file)
@@ -4042,8 +4042,10 @@ psppire_sheet_motion (GtkWidget *widget,  GdkEventMotion *event)
   if (sheet->select_status == PSPPIRE_SHEET_NORMAL && row == sheet->active_cell.row &&
       column == sheet->active_cell.col) return TRUE;
 
+#if 0
   if (PSPPIRE_SHEET_IN_SELECTION (sheet) && mods&GDK_BUTTON1_MASK)
     psppire_sheet_extend_selection (sheet, row, column);
+#endif
 
   return TRUE;
 }