change library icon (#377)

This commit is contained in:
jetownfeve21 2020-02-19 08:33:02 +01:00 committed by GitHub
parent 9beba77625
commit a9a299c8ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1722 additions and 1 deletions

View File

@ -138,6 +138,11 @@ QTabBar::tab:selected {
border-bottom: 2px solid white;
}
QTabBar::tab:first {
padding-top: 6px;
padding-left: 5px;
}
QTabBar::tab:last {
border: none;
}

File diff suppressed because it is too large Load Diff

After

Width:  |  Height:  |  Size: 129 KiB

View File

@ -70,6 +70,7 @@
<file>icons/pause-button.png</file>
<file>icons/cancel-button.png</file>
<file>icons/new-tab-icon.svg</file>
<file>icons/library-icon.svg</file>
</qresource>
<qresource lang="fr" prefix="/">
<file alias="texts/about.html">texts/fr/about.html</file>

View File

@ -101,7 +101,7 @@ void TabBar::setContentManagerView(ContentManagerView* view)
mp_contentManagerView = view;
mp_stackedWidget->addWidget(mp_contentManagerView);
mp_stackedWidget->show();
addTab(QIcon(":/icons/kiwix/app_icon.svg"), "");
addTab(QIcon(":/icons/library-icon.svg"), "");
setTabButton(0, RightSide, nullptr);
}