comparison src/dupe.c @ 479:5212d4fed37f

Ensure Properties dialog is displayed above fullscreen window. Add a parameter to info_window_new() to pass parent window and revert patch 472.
author zas_
date Tue, 22 Apr 2008 08:16:02 +0000
parents 48c8e49b571c
children c7a2471e5c4e
comparison
equal deleted inserted replaced
478:9e54275835fb 479:5212d4fed37f
2145 2145
2146 static void dupe_menu_info_cb(GtkWidget *widget, gpointer data) 2146 static void dupe_menu_info_cb(GtkWidget *widget, gpointer data)
2147 { 2147 {
2148 DupeWindow *dw = data; 2148 DupeWindow *dw = data;
2149 2149
2150 info_window_new(NULL, dupe_listview_get_selection(dw, dw->listview)); 2150 info_window_new(NULL, dupe_listview_get_selection(dw, dw->listview), NULL);
2151 } 2151 }
2152 2152
2153 static void dupe_menu_collection_cb(GtkWidget *widget, gpointer data) 2153 static void dupe_menu_collection_cb(GtkWidget *widget, gpointer data)
2154 { 2154 {
2155 DupeWindow *dw = data; 2155 DupeWindow *dw = data;
2924 break; 2924 break;
2925 case 'D': case 'd': 2925 case 'D': case 'd':
2926 file_util_delete(NULL, dupe_listview_get_selection(dw, listview), dw->window); 2926 file_util_delete(NULL, dupe_listview_get_selection(dw, listview), dw->window);
2927 break; 2927 break;
2928 case 'P': case 'p': 2928 case 'P': case 'p':
2929 info_window_new(NULL, dupe_listview_get_selection(dw, listview)); 2929 info_window_new(NULL, dupe_listview_get_selection(dw, listview), NULL);
2930 break; 2930 break;
2931 default: 2931 default:
2932 stop_signal = FALSE; 2932 stop_signal = FALSE;
2933 break; 2933 break;
2934 } 2934 }