[mutter/wayland] window: fix coerced value



commit d6396cf2c4b1bf71f51bd2b5f694c28f56d2bb9a
Author: Marek Ch <mchqwerty gmail com>
Date:   Thu Dec 19 16:56:31 2013 +0100

    window: fix coerced value
    
    (int) 0.5 = 0, so there always was 0 instead of 50%

 src/core/window.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/core/window.c b/src/core/window.c
index eb3035f..ee29fd4 100644
--- a/src/core/window.c
+++ b/src/core/window.c
@@ -7885,7 +7885,7 @@ meta_window_titlebar_is_onscreen (MetaWindow *window)
   gboolean       is_onscreen;
 
   const int min_height_needed  = 8;
-  const int min_width_percent  = 0.5;
+  const float min_width_percent  = 0.5;
   const int min_width_absolute = 50;
 
   /* Titlebar can't be offscreen if there is no titlebar... */


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]