GNOME Bugzilla – Bug 666015
Missing "workspace-added" signals when moving windows from external application
Last modified: 2011-12-15 15:32:25 UTC
Created attachment 203265 [details] [review] patch Using libwnck, an external application can create a new workspace by moving a window into it. In this case we are currently missing a "workspace-added" signal emission.
Review of attachment 203265 [details] [review]: Looks fine, except that the i/j usage here is pretty ugly, instead do: old_num = i; once and then for (i = old_num; i < new_num; i++) twice.
Created attachment 203501 [details] [review] patch v2 Updated patch
Review of attachment 203501 [details] [review]: now that the loop are very much for loops, they should be written as for loops
Created attachment 203511 [details] [review] patch v3