Always hide reference note if it's empty.
[dcpomatic.git] / src / wx / content_sub_panel.cc
index 5cdd2e5c3c6a25e285167ce6b3cfe21223a51f07..bdb365158c7e743e51506792ca4d2e7b078d5f9f 100644 (file)
@@ -74,7 +74,7 @@ ContentSubPanel::setup_refer_button (wxCheckBox* button, wxStaticText* note, sha
        note->SetLabel (s);
        note->Wrap (400);
 
-       if (s.IsEmpty ()) {
+       if (s.IsEmpty() || Config::instance()->interface_complexity() == Config::INTERFACE_SIMPLE) {
                note->Hide ();
        } else {
                note->Show ();