[gthumb/ext] Just show the viewer when an item is activated.
- From: Paolo Bacchilega <paobac src gnome org>
- To: svn-commits-list gnome org
- Cc:
- Subject: [gthumb/ext] Just show the viewer when an item is activated.
- Date: Tue, 22 Dec 2009 17:47:26 +0000 (UTC)
commit 37bae9f45b3658d7c519025f16ea5e7966559c30
Author: Paolo Bacchilega <paobac src gnome org>
Date: Tue Dec 22 16:57:22 2009 +0100
Just show the viewer when an item is activated.
gthumb/gth-browser.c | 14 ++++----------
1 files changed, 4 insertions(+), 10 deletions(-)
---
diff --git a/gthumb/gth-browser.c b/gthumb/gth-browser.c
index 190aaf7..0e85a8e 100644
--- a/gthumb/gth-browser.c
+++ b/gthumb/gth-browser.c
@@ -2755,17 +2755,11 @@ gth_file_view_item_activated_cb (GtkIconView *iconview,
gpointer user_data)
{
GthBrowser *browser = user_data;
- GList *list;
- GList *files;
-
- list = g_list_prepend (NULL, path);
- files = gth_file_list_get_files (GTH_FILE_LIST (browser->priv->file_list), list);
- if (files != NULL)
- gth_browser_load_file (browser, (GthFileData *) files->data, TRUE);
-
- _g_object_list_unref (files);
- g_list_free (list);
+ if (browser->priv->viewer_page != NULL) {
+ gth_viewer_page_show (GTH_VIEWER_PAGE (browser->priv->viewer_page));
+ gth_window_set_current_page (GTH_WINDOW (browser), GTH_BROWSER_PAGE_VIEWER);
+ }
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]