Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 453842 | Differences between
and this patch

Collapse All | Expand All

(-)gnome-shell-3.6.2/js/gdm/loginDialog.js (+1 lines)
Lines 496-501 const SessionListItem = new Lang.Class({ Link Here
496
                          color.alpha / 255);
496
                          color.alpha / 255);
497
        cr.arc(width / 2, height / 2, width / 3, 0, 2 * Math.PI);
497
        cr.arc(width / 2, height / 2, width / 3, 0, 2 * Math.PI);
498
        cr.fill();
498
        cr.fill();
499
        cr.$dispose();
499
    },
500
    },
500
501
501
    _onClicked: function() {
502
    _onClicked: function() {
(-)gnome-shell-3.6.2/js/ui/altTab.js (+1 lines)
Lines 1164-1167 function _drawArrow(area, side) { Link Here
1164
1164
1165
    Clutter.cairo_set_source_color(cr, bodyColor);
1165
    Clutter.cairo_set_source_color(cr, bodyColor);
1166
    cr.fill();
1166
    cr.fill();
1167
	cr.$dispose();
1167
}
1168
}
(-)gnome-shell-3.6.2/js/ui/boxpointer.js (+1 lines)
Lines 405-410 const BoxPointer = new Lang.Class({ Link Here
405
            cr.setLineWidth(borderWidth);
405
            cr.setLineWidth(borderWidth);
406
            cr.stroke();
406
            cr.stroke();
407
        }
407
        }
408
        cr.$dispose();
408
    },
409
    },
409
410
410
    setPosition: function(sourceActor, alignment) {
411
    setPosition: function(sourceActor, alignment) {
(-)gnome-shell-3.6.2/js/ui/dateMenu.js (+1 lines)
Lines 32-37 function _onVertSepRepaint (area) Link Here
32
    cr.setDash([1, 3], 1); // Hard-code for now
32
    cr.setDash([1, 3], 1); // Hard-code for now
33
    cr.setLineWidth(stippleWidth);
33
    cr.setLineWidth(stippleWidth);
34
    cr.stroke();
34
    cr.stroke();
35
    cr.$dispose();
35
};
36
};
36
37
37
const DateMenuButton = new Lang.Class({
38
const DateMenuButton = new Lang.Class({
(-)gnome-shell-3.6.2/js/ui/panel.js (+1 lines)
Lines 880-885 const PanelCorner = new Lang.Class({ Link Here
880
        cr.appendPath(savedPath);
880
        cr.appendPath(savedPath);
881
        cr.fill();
881
        cr.fill();
882
        cr.restore();
882
        cr.restore();
883
        cr.$dispose();
883
    },
884
    },
884
885
885
    _styleChanged: function() {
886
    _styleChanged: function() {
(-)gnome-shell-3.6.2/js/ui/popupMenu.js (+3 lines)
Lines 206-211 const PopupBaseMenuItem = new Lang.Class Link Here
206
            color.alpha / 255);
206
            color.alpha / 255);
207
        cr.arc(width / 2, height / 2, width / 3, 0, 2 * Math.PI);
207
        cr.arc(width / 2, height / 2, width / 3, 0, 2 * Math.PI);
208
        cr.fill();
208
        cr.fill();
209
        cr.$dispose();
209
    },
210
    },
210
211
211
    // This returns column widths in logical order (i.e. from the dot
212
    // This returns column widths in logical order (i.e. from the dot
Lines 427-432 const PopupSeparatorMenuItem = new Lang. Link Here
427
        cr.setSource(pattern);
428
        cr.setSource(pattern);
428
        cr.rectangle(margin, gradientOffset, gradientWidth, gradientHeight);
429
        cr.rectangle(margin, gradientOffset, gradientWidth, gradientHeight);
429
        cr.fill();
430
        cr.fill();
431
        cr.$dispose();
430
    }
432
    }
431
});
433
});
432
434
Lines 624-629 const PopupSliderMenuItem = new Lang.Cla Link Here
624
            color.alpha / 255);
626
            color.alpha / 255);
625
        cr.arc(handleX, handleY, handleRadius, 0, 2 * Math.PI);
627
        cr.arc(handleX, handleY, handleRadius, 0, 2 * Math.PI);
626
        cr.fill();
628
        cr.fill();
629
        cr.$dispose();
627
    },
630
    },
628
631
629
    _startDragging: function(actor, event) {
632
    _startDragging: function(actor, event) {

Return to bug 453842