~vthompson/ubuntu-ui-toolkit/expose-pressed-ubuntushape

« back to all changes in this revision

Viewing changes to modules/Ubuntu/Components/Tabs.qml

  • Committer: CI bot
  • Author(s): Zoltán Balogh, Christian Dywan
  • Date: 2014-08-06 16:37:22 UTC
  • mfrom: (1000.162.4 staging)
  • Revision ID: ps-jenkins@lists.canonical.com-20140806163722-b54f559nzdcaitfu
- Ubuntu Shape: store geometry before redrawing can occur so that  the geometry is more reliably respected. Fixes: https://bugs.launchpad.net/bugs/1353493
- Square overflow panel style for header pop overs. Fixes: https://bugs.launchpad.net/bugs/1336789 

Show diffs side-by-side

added added

removed removed

Lines of Context:
338
338
        function connectToRepeaters(children) {
339
339
            for (var i = 0; i < children.length; i++) {
340
340
                var child = children[i];
341
 
                if (internal.isRepeater(child) && (internal.repeaters.indexOf(child) < 0)) {
 
341
                if (internal.isRepeater(child) && internal.repeaters && (internal.repeaters.indexOf(child) < 0)) {
342
342
                    internal.connectRepeater(child);
343
343
                }
344
344
            }