[longomatch] Invert the position of the preview and the despcription in the plays list
- From: Andoni Morales Alastruey <amorales src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [longomatch] Invert the position of the preview and the despcription in the plays list
- Date: Sun, 14 Nov 2010 20:51:10 +0000 (UTC)
commit 68ca1bfe35dfd8cf6b90a330fbec1b21f4905b47
Author: Andoni Morales Alastruey <ylatuya gmail com>
Date: Sat Nov 13 23:08:40 2010 +0100
Invert the position of the preview and the despcription in the plays list
LongoMatch/Gui/TreeView/ListTreeViewBase.cs | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/LongoMatch/Gui/TreeView/ListTreeViewBase.cs b/LongoMatch/Gui/TreeView/ListTreeViewBase.cs
index b737503..b8fdb3d 100644
--- a/LongoMatch/Gui/TreeView/ListTreeViewBase.cs
+++ b/LongoMatch/Gui/TreeView/ListTreeViewBase.cs
@@ -88,8 +88,8 @@ namespace LongoMatch.Gui.Component
nameCell = new Gtk.CellRendererText();
nameCell.Edited += OnNameCellEdited;
Gtk.CellRendererPixbuf miniatureCell = new Gtk.CellRendererPixbuf();
- nameColumn.PackStart(miniatureCell, true);
- nameColumn.PackEnd(nameCell, true);
+ nameColumn.PackStart(nameCell, true);
+ nameColumn.PackEnd(miniatureCell, true);
nameColumn.SetCellDataFunc(miniatureCell, new Gtk.TreeCellDataFunc(RenderMiniature));
nameColumn.SetCellDataFunc(nameCell, new Gtk.TreeCellDataFunc(RenderName));
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]