X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=blobdiff_plain;f=lib%2Fgtk-contrib%2Fpsppire-sheet.c;h=e09022bb3d4adbc352b03faea8d514263e6bec95;hp=c84d898984fbac6bfeaedfde639860183c4f0b19;hb=db0ab43d34135721e7e82ba62d413681e462f801;hpb=00396b2d6cb415f19cefda552e3edd571a71ac93 diff --git a/lib/gtk-contrib/psppire-sheet.c b/lib/gtk-contrib/psppire-sheet.c index c84d8989..e09022bb 100644 --- a/lib/gtk-contrib/psppire-sheet.c +++ b/lib/gtk-contrib/psppire-sheet.c @@ -1129,7 +1129,6 @@ psppire_sheet_init (PsppireSheet *sheet) sheet->vaxis = NULL; sheet->flags = 0; - sheet->selection_mode = GTK_SELECTION_NONE; sheet->select_status = PSPPIRE_SHEET_NORMAL; GTK_WIDGET_UNSET_FLAGS (sheet, GTK_NO_WINDOW); @@ -3457,20 +3456,6 @@ psppire_sheet_motion (GtkWidget *widget, GdkEventMotion *event) gdk_window_set_cursor (sheet->sheet_window, sheet->cursor_drag); } - new_cursor = GDK_SIZING; - if ( event->window == sheet->sheet_window && - sheet->selection_mode != GTK_SELECTION_NONE && - !PSPPIRE_SHEET_IN_DRAG (sheet) && - (POSSIBLE_RESIZE (sheet, x, y, &row, &column) || - PSPPIRE_SHEET_IN_RESIZE (sheet)) && - new_cursor != sheet->cursor_drag->type) - { - gdk_cursor_unref (sheet->cursor_drag); - sheet->cursor_drag = gdk_cursor_new_for_display (display, GDK_SIZING); - gdk_window_set_cursor (sheet->sheet_window, sheet->cursor_drag); - } - - gdk_window_get_pointer (widget->window, &x, &y, &mods); if (! (mods & GDK_BUTTON1_MASK)) return FALSE;