sierrafoxtrot
|
2009-12-17
, 14:17
|
Posts: 78 |
Thanked: 53 times |
Joined on Nov 2009
|
#71
|
|
2009-12-17
, 16:44
|
Posts: 328 |
Thanked: 101 times |
Joined on Dec 2009
|
#72
|
|
2009-12-17
, 16:51
|
|
Posts: 475 |
Thanked: 771 times |
Joined on Dec 2007
@ Hamilton, Ontario, Canada
|
#73
|
The Following User Says Thank You to fiferboy For This Useful Post: | ||
|
2009-12-17
, 18:29
|
Posts: 328 |
Thanked: 101 times |
Joined on Dec 2009
|
#74
|
|
2009-12-17
, 18:51
|
Posts: 1,418 |
Thanked: 1,541 times |
Joined on Feb 2008
|
#75
|
|
2009-12-17
, 19:05
|
|
Posts: 4,274 |
Thanked: 5,358 times |
Joined on Sep 2007
@ Looking at y'all and sighing
|
#76
|
I had to disable qwerty's fix to the overlay widget, as there are issues with it.
static void fullscreen_button_on_is_topmost_changed (GObject *object G_GNUC_UNUSED, GParamSpec *property G_GNUC_UNUSED, gpointer data) { HeFullscreenButton *self = HE_FULLSCREEN_BUTTON (data); if (hildon_window_get_is_topmost (HILDON_WINDOW(self->parent_window))) { if (gdk_window_get_state (GTK_WIDGET (self->parent_window)->window) & GDK_WINDOW_STATE_FULLSCREEN) { fullscreen_button_enable (self); } } else { fullscreen_button_disable (self); } } [Before return self in he_fullscreen_button_new()] if (HILDON_IS_WINDOW(parent_window)) { g_signal_connect (parent_window, "notify::is-topmost", G_CALLBACK(fullscreen_button_on_is_topmost_changed), self); } [After g_signal_handlers_disconnect_by_func (self->parent_window, fullscreen_button_destroy, self);] g_signal_handlers_disconnect_by_func (self->parent_window, fullscreen_button_on_is_topmost_changed, self);
|
2009-12-17
, 19:12
|
|
Posts: 5,478 |
Thanked: 5,222 times |
Joined on Jan 2006
@ St. Petersburg, FL
|
#77
|
Looks like I will have to put zlibrary into user/libs again. This mess cannot be allowed to continue.
|
2009-12-17
, 20:23
|
Posts: 1,418 |
Thanked: 1,541 times |
Joined on Feb 2008
|
#78
|
Which is exactly why you shouldn't but it back in user/*. It's like a virus, currently some users are infected but that number is relatively small. It needs to be stopped now before users beyond Extras-devel get exposed. Besides, it can't go into Extras with a lib in user/*.
|
2009-12-17
, 20:25
|
Posts: 1,418 |
Thanked: 1,541 times |
Joined on Feb 2008
|
#79
|
This appears to be a problem [the solution] on Maemo 5. (It has been discussed on -developers twice.) Conny and I decided to workaround it by disabling/enabling the widget depending on if the HildonWindow (or any widget derived from it, like HildonStackableWindow) is on the screen. I don't have the time now to do a diff, but the following in he-fullscreen-button.c should do it:
|
2009-12-17
, 20:29
|
Posts: 3,617 |
Thanked: 2,412 times |
Joined on Nov 2009
@ Cambridge, UK
|
#80
|
The Following User Says Thank You to Rob1n For This Useful Post: | ||