diff options
| -rw-r--r-- | src/wx/timeline_dialog.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wx/timeline_dialog.cc b/src/wx/timeline_dialog.cc index dff8c7a3e..ba0e1b15e 100644 --- a/src/wx/timeline_dialog.cc +++ b/src/wx/timeline_dialog.cc @@ -94,7 +94,8 @@ wxString TimelineDialog::bitmap_path (string name) { boost::filesystem::path p = shared_path() / String::compose("%1.png", name); - return std_to_wx (p.string ()); + cout << "Loading " << p.string() << "\n"; + return std_to_wx (p.string()); } void |
