mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-03-27 17:50:04 +01:00
[apps] Fix comment aesthetics
Change-Id: I3e91391f0751515efe50ec4e4335a2421f2acbee
This commit is contained in:
@@ -115,10 +115,10 @@ bool SequenceToolbox::selectAddedCell(int selectedRow){
|
||||
char buffer[bufferSize];
|
||||
m_addedCellLayout[selectedRow]->writeTextInBuffer(buffer, bufferSize);
|
||||
if (m_action == MathToolbox::actionForTextInput) {
|
||||
// DIRTY. The symbols are layouted using a Subscript VerticalOffsetLayout,
|
||||
// which serializes into "_{}", but we want parentheses for text fields. We
|
||||
// thus need to remove any underscores, and changes brackets into
|
||||
// parentheses.
|
||||
/* DIRTY. The symbols are layouted using a Subscript VerticalOffsetLayout,
|
||||
* which serializes into "_{}", but we want parentheses for text fields. We
|
||||
* thus need to remove any underscores, and changes brackets into
|
||||
* parentheses. */
|
||||
for (int i = 0; i < bufferSize; i++) {
|
||||
if (buffer[i] == '{') {
|
||||
buffer[i] = '(';
|
||||
|
||||
Reference in New Issue
Block a user