diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/text_panel.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc index ef604f787..9922f4e70 100644 --- a/src/wx/text_panel.cc +++ b/src/wx/text_panel.cc @@ -210,7 +210,7 @@ TextPanel::update_dcp_track_selection () ++n; } - if (many) { + if (!selected || many) { _dcp_track->SetSelection (wxNOT_FOUND); } } @@ -325,6 +325,7 @@ TextPanel::film_content_changed (int property) _type->SetSelection (0); } setup_sensitivity (); + update_dcp_track_selection (); } else if (property == TextContentProperty::BURN) { checked_set (_burn, text ? text->burn() : false); } else if (property == TextContentProperty::X_OFFSET) { |
