Patch from Björn Lindqvist to fix a logic error. #322149.
2006-01-02 Elijah Newren <newren@gmail.com> Patch from Björn Lindqvist to fix a logic error. #322149. * src/window.c (update_resize): && should have been ||.
This commit is contained in:
parent
ebd0c7e9a6
commit
339948fcf2
@ -1,3 +1,9 @@
|
|||||||
|
2006-01-02 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
|
Patch from Björn Lindqvist to fix a logic error. #322149.
|
||||||
|
|
||||||
|
* src/window.c (update_resize): && should have been ||.
|
||||||
|
|
||||||
2006-01-02 Elijah Newren <newren@gmail.com>
|
2006-01-02 Elijah Newren <newren@gmail.com>
|
||||||
|
|
||||||
Patch from Jens Granseuer to fix build with gcc 2.95. #322622.
|
Patch from Jens Granseuer to fix build with gcc 2.95. #322622.
|
||||||
@ -18,7 +24,6 @@
|
|||||||
* src/window.c (meta_window_new_with_attrs,
|
* src/window.c (meta_window_new_with_attrs,
|
||||||
meta_window_apply_session_info, meta_window_resize,
|
meta_window_apply_session_info, meta_window_resize,
|
||||||
meta_window_resize_with_gravity, meta_window_configure_request):
|
meta_window_resize_with_gravity, meta_window_configure_request):
|
||||||
|
|
||||||
Remove C99 style variable initiailization
|
Remove C99 style variable initiailization
|
||||||
|
|
||||||
2006-01-02 Elijah Newren <newren@gmail.com>
|
2006-01-02 Elijah Newren <newren@gmail.com>
|
||||||
|
@ -6894,12 +6894,9 @@ update_resize (MetaWindow *window,
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Store the latest resize time, if we actually resized. */
|
/* Store the latest resize time, if we actually resized. */
|
||||||
if (window->rect.width != old.width &&
|
if (window->rect.width != old.width || window->rect.height != old.height)
|
||||||
window->rect.height != old.height)
|
|
||||||
{
|
|
||||||
g_get_current_time (&window->display->grab_last_moveresize_time);
|
g_get_current_time (&window->display->grab_last_moveresize_time);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
typedef struct
|
typedef struct
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user