dash: Increase the maximum icon size

With the labels removed from dash items, we can potentially use
a larger icon size, so add 64 to the list of icon sizes and use
it by default.
This commit is contained in:
Florian Müllner 2011-02-09 23:40:48 +01:00
parent c239d3bb1b
commit 7372308270

View File

@ -249,7 +249,7 @@ function Dash() {
Dash.prototype = {
_init : function() {
this._maxHeight = -1;
this._iconSize = 48;
this._iconSize = 64;
this._shownInitially = false;
this._dragPlaceholder = null;
@ -413,7 +413,7 @@ Dash.prototype = {
let [minHeight, natHeight] = this.actor.get_preferred_height(-1);
let diff = (this._maxHeight - natHeight) / iconChildren.length;
let iconSizes = [ 16, 22, 24, 32, 48 ];
let iconSizes = [ 16, 22, 24, 32, 48, 64 ];
let newIconSize = 16;
for (let i = 0; i < iconSizes.length; i++) {