[Xfce4-commits] [apps/ristretto] 01/01: Fix "Sort type unsupported" for sorting by file type
noreply at xfce.org
noreply at xfce.org
Fri Apr 12 02:54:47 CEST 2019
This is an automated email from the git hooks/post-receive script.
f 2 4 0 4 p u s h e d a c o m m i t t o b r a n c h m a s t e r
in repository apps/ristretto.
commit 5403457b77bdca4fa5e70ad8c97727d2ca8b06ca
Author: Igor <f2404 at yandex.ru>
Date: Thu Apr 11 20:54:13 2019 -0400
Fix "Sort type unsupported" for sorting by file type
---
src/main_window.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/main_window.c b/src/main_window.c
index 4ea9983..fbada25 100644
--- a/src/main_window.c
+++ b/src/main_window.c
@@ -1302,6 +1302,9 @@ rstto_main_window_new (RsttoImageList *image_list, gboolean fullscreen)
case SORT_TYPE_NAME:
rstto_image_list_set_sort_by_name (window->priv->image_list);
break;
+ case SORT_TYPE_TYPE:
+ rstto_image_list_set_sort_by_type (window->priv->image_list);
+ break;
case SORT_TYPE_DATE:
rstto_image_list_set_sort_by_date (window->priv->image_list);
break;
@@ -1310,7 +1313,6 @@ rstto_main_window_new (RsttoImageList *image_list, gboolean fullscreen)
break;
}
-
window->priv->iter = rstto_image_list_get_iter (window->priv->image_list);
g_signal_connect (
G_OBJECT (window->priv->iter),
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list