From 973ed28a3727f2dfaa662f9af8fa7e14a657624f Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 9 May 2010 16:53:35 -0600 Subject: [PATCH] Move on device column to ne second column by default --- src/calibre/gui2/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/__init__.py b/src/calibre/gui2/__init__.py index 1eff46aca1..5f0cf2e1ae 100644 --- a/src/calibre/gui2/__init__.py +++ b/src/calibre/gui2/__init__.py @@ -24,8 +24,8 @@ gprefs = JSONConfig('gui') NONE = QVariant() #: Null value to return from the data function of item models UNDEFINED_QDATE = QDate(UNDEFINED_DATE) -ALL_COLUMNS = ['title', 'authors', 'size', 'timestamp', 'rating', 'publisher', - 'tags', 'series', 'pubdate', 'ondevice'] +ALL_COLUMNS = ['title', 'ondevice', 'authors', 'size', 'timestamp', 'rating', 'publisher', + 'tags', 'series', 'pubdate'] def _config(): c = Config('gui', 'preferences for the calibre GUI')