mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-13 00:58:29 +02:00
InputConfigDialog: Don't show "..." for complicated expressions
Just show the actual expression. We need to do a bit of mangling here as wx has no way to turn off mnemonics parsing, so do that as well.
This commit is contained in:
@ -73,13 +73,6 @@ public:
|
||||
return 0;
|
||||
}
|
||||
|
||||
bool IsComplicated() {
|
||||
if (parsed_expression)
|
||||
return parsed_expression->is_complicated;
|
||||
else
|
||||
return false;
|
||||
}
|
||||
|
||||
protected:
|
||||
ControlReference(const bool _is_input) : range(1), is_input(_is_input), parsed_expression(NULL) {}
|
||||
ciface::ExpressionParser::Expression *parsed_expression;
|
||||
|
Reference in New Issue
Block a user