Switch to unified view

a/GUI/mainw/mw_menubar.cpp b/GUI/mainw/mw_menubar.cpp
...
...
22
#include <QFileDialog>
22
#include <QFileDialog>
23
#include <QMessageBox>
23
#include <QMessageBox>
24
24
25
#include <libupnpp/upnpplib.hxx>
25
#include <libupnpp/upnpplib.hxx>
26
26
27
#include "HelperStructs/CSettingsStorage.h"
27
28
28
/** VIEW **/
29
/** VIEW **/
29
30
30
void GUI_Player::showLibrary(bool b, bool resize)
31
void GUI_Player::showLibrary(bool b, bool resize)
31
{
32
{
...
...
74
75
75
    m_settings->setPlayerFullscreen(b);
76
    m_settings->setPlayerFullscreen(b);
76
}
77
}
77
78
78
// prvt slot
79
// prvt slot
79
void GUI_Player::show_notification_toggled(bool active)
80
{
81
82
    m_settings->setShowNotifications(active);
83
}
84
85
// prvt slot
86
void GUI_Player::small_playlist_items_toggled(bool b)
80
void GUI_Player::small_playlist_items_toggled(bool b)
87
{
81
{
88
    m_settings->setShowSmallPlaylist(b);
82
    m_settings->setShowSmallPlaylist(b);
89
    emit show_small_playlist_items(b);
83
    emit show_small_playlist_items(b);
90
}
84
}