applied patch from Pierre Ossman <drzeus-bugzilla@drzeus.cx> to display

2004-08-30  Carlos Garnacho Parro  <carlosg@gnome.org>

        * gnome-settings-multimedia-keys.c: applied patch from Pierre Ossman
        <drzeus-bugzilla@drzeus.cx> to display the volume dialog in the
        correct place. Fixes #144490
This commit is contained in:
Carlos Garnacho Parro 2004-08-30 13:04:48 +00:00 committed by Carlos Garnacho
parent 1381075c32
commit e552c12fcb
2 changed files with 8 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2004-08-30 Carlos Garnacho Parro <carlosg@gnome.org>
* gnome-settings-multimedia-keys.c: applied patch from Pierre Ossman
<drzeus-bugzilla@drzeus.cx> to display the volume dialog in the
correct place. Fixes #144490
2004-08-22 Jeroen Zwartepoorte <jeroen@xs4all.nl>
* actions/acme-fb-level.c: Use the parent type in the G_DEFINE_TYPE

View file

@ -539,10 +539,10 @@ dialog_show (Acme *acme)
x = ((screen_w - orig_w) / 2) + geometry.x;
y = geometry.y + (screen_h / 2) + (screen_h / 2 - orig_h) / 2;
gdk_window_move (GTK_WIDGET (acme->dialog)->window, x, y);
gtk_widget_show (acme->dialog);
gdk_window_move (GTK_WIDGET (acme->dialog)->window, x, y);
/* this makes sure the dialog is actually shown */
while (gtk_events_pending())
gtk_main_iteration();