allow translation of demosaic methods; hide Sub-Image selector for files with onyl 1 raw file; ...

This commit is contained in:
heckflosse
2017-03-22 14:13:51 +01:00
parent a7511f754e
commit 9bb5164cce
18 changed files with 149 additions and 56 deletions

View File

@@ -160,6 +160,18 @@ public:
exp->set_expanded( expanded );
}
}
void hide() {
if (exp && !batchMode) { // conditional hide
exp->hide();
}
}
void show() {
if (exp) { // always show
exp->show();
}
}
bool getExpanded ()
{
if (exp) {