mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
[apps/graph] Display function name in hide/show derivative controllers
This commit is contained in:
@@ -4,14 +4,7 @@
|
||||
namespace Shared {
|
||||
|
||||
const char * StorageValuesFunctionParameterController::title() {
|
||||
strlcpy(m_pageTitle, I18n::translate(I18n::Message::FunctionColumn), k_maxNumberOfCharsInTitle);
|
||||
for (int currentChar = 0; currentChar < k_maxNumberOfCharsInTitle-1; currentChar++) {
|
||||
if (m_pageTitle[currentChar] == '(') {
|
||||
m_pageTitle[currentChar-1] = *m_function->fullName();
|
||||
m_pageTitle[currentChar+1] = m_symbol;
|
||||
break;
|
||||
}
|
||||
}
|
||||
m_function->nameWithArgument(m_pageTitle, k_maxNumberOfCharsInTitle, m_symbol);
|
||||
return m_pageTitle;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user