From 5cc5058cfb4e7f3c22e7c53c7f538e73cc642c64 Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sat, 25 Jul 2009 16:27:30 +0200 Subject: [PATCH] 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. --- lib/gtk-contrib/psppire-sheet.c | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.30.2