diff --git a/YACReader/main_window_viewer.cpp b/YACReader/main_window_viewer.cpp
index b03d7333..be160bcc 100644
--- a/YACReader/main_window_viewer.cpp
+++ b/YACReader/main_window_viewer.cpp
@@ -596,6 +596,8 @@ void MainWindowViewer::toggleToolBars()
toolbars?hideToolBars():showToolBars();
Configuration::getConfiguration().setShowToolbars(toolbars);
+
+ comicToolBar->setMovable(false);
}
void MainWindowViewer::hideToolBars()
{
diff --git a/YACReaderLibrary/no_libraries_widget.cpp b/YACReaderLibrary/no_libraries_widget.cpp
index df9f13c1..f9c88451 100644
--- a/YACReaderLibrary/no_libraries_widget.cpp
+++ b/YACReaderLibrary/no_libraries_widget.cpp
@@ -11,7 +11,7 @@ NoLibrariesWidget::NoLibrariesWidget(QWidget *parent) :
setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
QPalette p(palette());
- p.setColor(QPalette::Background, Qt::white);
+ p.setColor(QPalette::Background, QColor(250,250,250));
setAutoFillBackground(true);
setPalette(p);
@@ -23,7 +23,7 @@ NoLibrariesWidget::NoLibrariesWidget(QWidget *parent) :
QLabel * lineLabel = new QLabel();
lineLabel->setPixmap(line);
- QLabel * text = new QLabel(tr("You don't have any library yet"));
+ QLabel * text = new QLabel(tr("You don't have any librarires yet"));
text->setStyleSheet("QLabel {font-size:25px;font-weight:bold;}");
QPushButton * createButton = new QPushButton(tr("create your first library"));
diff --git a/images/noLibrariesIcon.png b/images/noLibrariesIcon.png
index 9eb98e45..874377a1 100644
Binary files a/images/noLibrariesIcon.png and b/images/noLibrariesIcon.png differ