]> git.sur5r.net Git - i3/i3/commitdiff
docs: the comparison is size and position, not only size (Thanks Merovius)
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 22 Feb 2010 06:09:17 +0000 (07:09 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 22 Feb 2010 06:09:17 +0000 (07:09 +0100)
src/xinerama.c

index 15e8b0a35c47298fd08a51e24de22fdec02e321b..f6af933eb1e27c659ec4d32e6e69ad3aaa081f91 100644 (file)
@@ -51,8 +51,8 @@ bool screens_are_equal(i3Screen *screen1, i3Screen *screen2) {
         if (screen1 == screen2)
                 return true;
 
-        /* Compare their size - other properties are not relevant to determine
-         * if a screen is equal to another one */
+        /* Compare their size and position - other properties are not relevant
+         * to determine if a screen is equal to another one */
         return (memcmp(&(screen1->rect), &(screen2->rect), sizeof(Rect)) == 0);
 }