[mutter/wayland] monitorManager: Fix logic bug in make_logical_config



commit c9b71041177d7ec20b5835fb6d27403f0cf47368
Author: Adel Gadllah <adel gadllah gmail com>
Date:   Sun Feb 2 15:09:18 2014 +0100

    monitorManager: Fix logic bug in make_logical_config
    
    The code that prevents the creation of multiple MonitorInfos for clones
    wasn't working due to using the wrong index when getting the already
    created info so fix that to use the correct one.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=710610

 src/core/monitor.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/core/monitor.c b/src/core/monitor.c
index daca82a..4f4d105 100644
--- a/src/core/monitor.c
+++ b/src/core/monitor.c
@@ -288,7 +288,7 @@ make_logical_config (MetaMonitorManager *manager)
 
       for (j = 0; j < monitor_infos->len; j++)
         {
-          MetaMonitorInfo *info = &g_array_index (monitor_infos, MetaMonitorInfo, i);
+          MetaMonitorInfo *info = &g_array_index (monitor_infos, MetaMonitorInfo, j);
           if (meta_rectangle_equal (&crtc->rect,
                                     &info->rect))
             {


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