Hide the score and comment columns by default

This commit is contained in:
David Sansome 2010-12-19 14:27:07 +00:00
parent eb61b67dd1
commit afdf02e37b
1 changed files with 2 additions and 1 deletions

View File

@ -72,7 +72,7 @@ PlaylistView::PlaylistView(QWidget *parent)
playlist_(NULL),
header_(new PlaylistHeader(Qt::Horizontal, this)),
setting_initial_header_layout_(false),
read_only_settings_(false),
read_only_settings_(true),
glow_enabled_(true),
currently_glowing_(false),
glow_intensity_step_(0),
@ -163,6 +163,7 @@ void PlaylistView::SetPlaylist(Playlist *playlist) {
LoadGeometry();
ReloadSettings();
DynamicModeChanged(playlist->is_dynamic());
read_only_settings_ = false;
connect(playlist_, SIGNAL(CurrentSongChanged(Song)), SLOT(MaybeAutoscroll()));
connect(playlist_, SIGNAL(DynamicModeChanged(bool)), SLOT(DynamicModeChanged(bool)));