(Add a comment to explain why I removed this)

This commit is contained in:
Arnaud Bienner 2013-11-17 19:42:06 +01:00
parent e7a5c482fe
commit 316b5d7db4
1 changed files with 6 additions and 0 deletions

View File

@ -171,6 +171,12 @@ QVariant Playlist::headerData(int section, Qt::Orientation, int role) const {
bool Playlist::column_is_editable(Playlist::Column column) {
switch (column) {
// For a long time, we had Column_Artist, etc. here, to allow inline editing
// of tags. This was a pretty good idea, but now we have a dedicated tag
// dialog editor, I'm not sure it is very useful. It was probably faster to
// edit tags this way, but I'm afraid lot of people may inadvertently modify
// their tags because of this. Still allow inline editing of score and
// comment, because they sound less critical to me.
case Column_Score:
case Column_Comment:
return true;