GNOME Bugzilla – Bug 511160
optional countdown for taking picture
Last modified: 2008-03-13 01:59:01 UTC
Now the countdown is forced. This can for instance be not so handy if you want to take pictures of something else then yourself. PS for Daniel ;-). I know I ripped this out myself in the refactor branch. This is just a placeholder so we or somebody else writes a patch for it for GNOME 2.24
partially fixed in trunk. we need to alter the gui though
Created attachment 105589 [details] [review] the ui patch
now whats missing is to read out the gconf setting at start and set the toggle entry to that value
The UI patch sofar looks fine to me. The thing that is also missing as far as i can see is that you have to disable the countdown process BTW I think if you want to get this in you need a freeze break.
i will apply for a freeze break if the patch is complete. i didnt manage to read the setting from gconf and apply it to the toggle menu entry. do you mind having a go there? what do you mean by disable the countdown process? do you mean if we are right into the countdown and then pressing esc?
(In reply to comment #5) > > i didnt manage to read the setting from gconf and apply it to the toggle menu > entry. do you mind having a go there? What's the problem you are having? Can't you read it from gconf or can't you set the toggle menu? For the rest it seems straigthforward. You read the setting at startup and the toggle menu item to the correct state > what do you mean by disable the countdown process? do you mean if we are right > into the countdown and then pressing esc? No, I mean that if countdown is not set, I should not see the countdown widget
i cant set the toggle menu as i just have the action group but not the toggleaction itself which i need to set.
Always look in code what does what you want. in eog-window.c for instance you can find action = gtk_ui_manager_get_action (priv->ui_mgr, "/MainMenu/View/StatusbarToggle"); g_assert (action != NULL); gtk_toggle_action_set_active (GTK_TOGGLE_ACTION (action), visible);
Created attachment 105942 [details] [review] final patch this is the final patch. settings are read out from gconf.
fixed in trunk/