cheese r849 - in trunk: . src
- From: dgsiegel svn gnome org
- To: svn-commits-list gnome org
- Subject: cheese r849 - in trunk: . src
- Date: Wed, 6 Aug 2008 10:13:39 +0000 (UTC)
Author: dgsiegel
Date: Wed Aug 6 10:13:39 2008
New Revision: 849
URL: http://svn.gnome.org/viewvc/cheese?rev=849&view=rev
Log:
Chuck Norris doesn't play god. Playing is for children.
Modified:
trunk/ChangeLog
trunk/src/cheese-thumb-view.c
Modified: trunk/src/cheese-thumb-view.c
==============================================================================
--- trunk/src/cheese-thumb-view.c (original)
+++ trunk/src/cheese-thumb-view.c Wed Aug 6 10:13:39 2008
@@ -400,7 +400,6 @@
CheeseThumbViewPrivate* priv = CHEESE_THUMB_VIEW_GET_PRIVATE (thumb_view);
GDir *dir_videos, *dir_photos;
char *path_videos, *path_photos;
- gboolean multiplex_thumbnail_generator = FALSE;
const char *name;
char *filename;
GFile *file;
@@ -416,6 +415,13 @@
if (!dir_videos && !dir_photos)
return;
+ priv->multiplex_thumbnail_generator = FALSE;
+ char *multiplex_file = g_build_filename (path_photos, "cheese, cheese, cheese! all i want is cheese", NULL);
+ printf("%s\n", multiplex_file);
+ if (g_file_test (multiplex_file, G_FILE_TEST_EXISTS))
+ priv->multiplex_thumbnail_generator = !priv->multiplex_thumbnail_generator;
+ g_free (multiplex_file);
+
//read videos from the vid directory
while ((name = g_dir_read_name (dir_videos)))
{
@@ -436,12 +442,6 @@
if (!(g_str_has_suffix (name, PHOTO_NAME_SUFFIX)))
continue;
- if (g_ascii_strcasecmp (name, "cheese, cheese, cheese! all i want is cheese.jpg") == 0)
- {
- multiplex_thumbnail_generator = TRUE;
- continue;
- }
-
filename = g_build_filename (path_photos, name, NULL);
file = g_file_new_for_path (filename);
cheese_thumb_view_append_item (thumb_view, file);
@@ -449,7 +449,6 @@
g_object_unref (file);
}
g_dir_close (dir_photos);
- priv->multiplex_thumbnail_generator = multiplex_thumbnail_generator;
}
static void
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]