diff options
author | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-12 18:53:22 +0200 |
---|---|---|
committer | Andrzej Rybczak <electricityispower@gmail.com> | 2012-09-12 18:53:22 +0200 |
commit | fd6a5889d02f9551e1743d7a792b7fb01af73b6b (patch) | |
tree | bff5e54422387886d2e190a5e011a13d39f8ef3b /src/display.cpp | |
parent | 0d81f9d65fac9cdd13137600fcaac97a38544b4b (diff) |
tag editor: add modified_item_prefix to see modified items
Diffstat (limited to 'src/display.cpp')
-rw-r--r-- | src/display.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/display.cpp b/src/display.cpp index c754a323..95654539 100644 --- a/src/display.cpp +++ b/src/display.cpp @@ -356,6 +356,8 @@ void Display::Songs(NC::Menu<MPD::Song> &menu, HasSongs *screen, const std::stri void Display::Tags(NC::Menu<MPD::MutableSong> &menu) { const MPD::MutableSong &s = menu.drawn()->value(); + if (s.isModified()) + menu << Config.modified_item_prefix; size_t i = myTagEditor->TagTypes->choice(); if (i < 11) { |