From: John Darrington Date: Sat, 25 Jul 2009 14:27:30 +0000 (+0200) Subject: Disable extend_selection call. X-Git-Tag: build37~42 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=5cc5058cfb4e7f3c22e7c53c7f538e73cc642c64 Disable extend_selection call. Temporarily disable the call to psppire_sheet_extend_selection since it interferes with the active cell border and selection is currently not working anyway. --- diff --git a/lib/gtk-contrib/psppire-sheet.c b/lib/gtk-contrib/psppire-sheet.c index 29eba936..be4cd243 100644 --- a/lib/gtk-contrib/psppire-sheet.c +++ b/lib/gtk-contrib/psppire-sheet.c @@ -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; }