diff options
| author | Carl Hetherington <cth@carlh.net> | 2018-12-21 21:49:15 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2018-12-21 21:49:15 +0000 |
| commit | a515fead777a1f1424fc18062c4b8232a99662bf (patch) | |
| tree | a3072edab3386447770345be23db637a43810396 /src | |
| parent | 65725304349b74a080d4bfacbaea27dcc771256b (diff) | |
swaroop: add progress dialog when switching playlists.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/swaroop_controls.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/wx/swaroop_controls.cc b/src/wx/swaroop_controls.cc index 3fadc8fb7..bd5fe7dd9 100644 --- a/src/wx/swaroop_controls.cc +++ b/src/wx/swaroop_controls.cc @@ -339,6 +339,9 @@ SwaroopControls::spl_selection_changed () return; } + wxProgressDialog dialog (_("DCP-o-matic"), "Loading playlist"); + dialog.Pulse (); + _current_spl_view->DeleteAllItems (); int N = 0; @@ -353,7 +356,9 @@ SwaroopControls::spl_selection_changed () _selected_playlist = selected; _selected_playlist_position = 0; + dialog.Pulse (); reset_film (); + dialog.Pulse (); update_current_content (); } |
