diff options
| author | Joaquín Ignacio Aramendía <[email protected]> | 2014-06-24 11:54:06 -0300 | 
|---|---|---|
| committer | Joaquín Ignacio Aramendía <[email protected]> | 2014-06-26 20:23:32 -0300 | 
| commit | f3263ee47c1ad6cacd359668ef967af9c8d2beb7 (patch) | |
| tree | d20a0ad411e2a16f3f2da9f02aebbb1acd7f0ed3 | |
| parent | e1d87e891c43c4c40b0bdd2f2627286e9bffdef5 (diff) | |
| download | marco-f3263ee47c1ad6cacd359668ef967af9c8d2beb7.tar.bz2 marco-f3263ee47c1ad6cacd359668ef967af9c8d2beb7.tar.xz | |
Remove "icky" timestamp pinging on finish_minimize
| -rw-r--r-- | src/core/window.c | 13 | 
1 files changed, 0 insertions, 13 deletions
| diff --git a/src/core/window.c b/src/core/window.c index 652c098d..37ea3ff5 100644 --- a/src/core/window.c +++ b/src/core/window.c @@ -1453,21 +1453,8 @@ static void  finish_minimize (gpointer data)  {    MetaWindow *window = data; -  /* FIXME: It really sucks to put timestamp pinging here; it'd -   * probably make more sense in implement_showing() so that it's at -   * least not duplicated in meta_window_show; but since -   * finish_minimize is a callback making things just slightly icky, I -   * haven't done that yet. -   */ -  guint32 timestamp = meta_display_get_current_time_roundtrip (window->display);    meta_window_hide (window); -  if (window->has_focus) -    { -      meta_workspace_focus_default_window (window->screen->active_workspace, -                                           window, -                                           timestamp); -    }  }  static void | 
