appDisplay: Fix folder icons for RTL locales

Unlike StTable, ClutterTableLayout does not take the actor's text
direction into account, so mirror columns ourselves now.

https://bugzilla.gnome.org/show_bug.cgi?id=731923
This commit is contained in:
Florian Müllner 2014-06-20 17:46:22 +02:00
parent 8abd18363c
commit 2bda6db30f

View File

@ -953,6 +953,7 @@ const FolderView = new Lang.Class({
let subSize = Math.floor(FOLDER_SUBICON_FRACTION * size); let subSize = Math.floor(FOLDER_SUBICON_FRACTION * size);
let numItems = this._allItems.length; let numItems = this._allItems.length;
let rtl = icon.get_text_direction() == Clutter.TextDirection.RTL;
for (let i = 0; i < 4; i++) { for (let i = 0; i < 4; i++) {
let bin; let bin;
if (i < numItems) { if (i < numItems) {
@ -961,7 +962,7 @@ const FolderView = new Lang.Class({
} else { } else {
bin = new St.Bin({ width: subSize, height: subSize }); bin = new St.Bin({ width: subSize, height: subSize });
} }
layout.pack(bin, i % 2, Math.floor(i / 2)); layout.pack(bin, rtl ? (i + 1) % 2 : i % 2, Math.floor(i / 2));
} }
return icon; return icon;