diff --git a/UI/Index.html b/UI/Index.html
index 84e61dc7d..e72e61d82 100644
--- a/UI/Index.html
+++ b/UI/Index.html
@@ -22,25 +22,48 @@
@@ -64,7 +87,7 @@
diff --git a/UI/Series/Index/SeriesIndexLayout.js b/UI/Series/Index/SeriesIndexLayout.js
index 5497513d9..feb68b0ba 100644
--- a/UI/Series/Index/SeriesIndexLayout.js
+++ b/UI/Series/Index/SeriesIndexLayout.js
@@ -172,24 +172,25 @@ define(
defaultAction: 'listView',
items :
[
+ {
+ key : 'posterView',
+ title : '',
+ icon : 'icon-th-large',
+ callback: this._showPosters
+ },
+ {
+ key : 'listView',
+ title : '',
+ icon : 'icon-th-list',
+ callback: this._showList
+ },
{
key : 'tableView',
title : '',
icon : 'icon-table',
callback: this._showTable
},
- {
- key : 'listView',
- title : '',
- icon : 'icon-list',
- callback: this._showList
- },
- {
- key : 'posterView',
- title : '',
- icon : 'icon-picture',
- callback: this._showPosters
- }
+
]
};