From 9c554a010640d61862b57c6c579ddfe1fab17bf0 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Wed, 9 May 2012 22:40:06 +0530 Subject: [PATCH] Add AZW3 to the list of internally viewed formats --- src/calibre/gui2/__init__.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/__init__.py b/src/calibre/gui2/__init__.py index b27a97d899..4f0463417b 100644 --- a/src/calibre/gui2/__init__.py +++ b/src/calibre/gui2/__init__.py @@ -137,8 +137,9 @@ def _config(): # {{{ c.add_opt('LRF_ebook_viewer_options', default=None, help=_('Options for the LRF ebook viewer')) c.add_opt('internally_viewed_formats', default=['LRF', 'EPUB', 'LIT', - 'MOBI', 'PRC', 'AZW', 'HTML', 'FB2', 'PDB', 'RB', 'SNB', 'HTMLZ'], - help=_('Formats that are viewed using the internal viewer')) + 'MOBI', 'PRC', 'POBI', 'AZW', 'AZW3', 'HTML', 'FB2', 'PDB', 'RB', + 'SNB', 'HTMLZ'], help=_( + 'Formats that are viewed using the internal viewer')) c.add_opt('column_map', default=ALL_COLUMNS, help=_('Columns to be displayed in the book list')) c.add_opt('autolaunch_server', default=False, help=_('Automatically launch content server on application startup'))