From cda65a33a1885e61cbaafb5e98e56c742a4828b0 Mon Sep 17 00:00:00 2001 From: Marco Pesenti Gritti Date: Sat, 8 Nov 2003 17:35:30 +0000 Subject: Focus history entry on _show. Do not try to update paste menu item using 2003-11-08 Marco Pesenti Gritti * src/bookmarks/ephy-bookmarks-editor.c: (ephy_bookmarks_editor_update_menu): * src/ephy-history-window.c: (ephy_history_window_show), (ephy_history_window_class_init), (ephy_history_window_update_menu): Focus history entry on _show. Do not try to update paste menu item using the wait api, it can cause a crash on a timeout and anyway it's incosistent what we do in main window. --- src/bookmarks/ephy-bookmarks-editor.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'src/bookmarks/ephy-bookmarks-editor.c') diff --git a/src/bookmarks/ephy-bookmarks-editor.c b/src/bookmarks/ephy-bookmarks-editor.c index 17ca97729..7942112f3 100644 --- a/src/bookmarks/ephy-bookmarks-editor.c +++ b/src/bookmarks/ephy-bookmarks-editor.c @@ -911,16 +911,13 @@ ephy_bookmarks_editor_update_menu (EphyBookmarksEditor *editor) if (GTK_IS_EDITABLE (focus_widget)) { gboolean has_selection; - gboolean clipboard_contains_text; has_selection = gtk_editable_get_selection_bounds (GTK_EDITABLE (focus_widget), NULL, NULL); - clipboard_contains_text = gtk_clipboard_wait_is_text_available - (gtk_clipboard_get (GDK_SELECTION_CLIPBOARD)); cut = has_selection; copy = has_selection; - paste = clipboard_contains_text; + paste = TRUE; select_all = TRUE; } else -- cgit v1.2.3