Clear Film Simulation combo when changing images

When switching to the "next" image whose HaldCLUT does not exist,
RT would show the previous image HaldCLUT's name in the
"Film Simulation" combo, even though it is not being used.
This patch by Hombre fixes it, and fixes #4388
This commit is contained in:
Morgan Hardwood 2018-02-26 00:14:33 +01:00
parent 619ae528ca
commit cfd666f23e

View File

@ -425,6 +425,8 @@ void ClutComboBox::setSelectedClut( Glib::ustring filename )
if ( found ) { if ( found ) {
set_active( found ); set_active( found );
} else {
set_active(-1);
} }
} }
} }