Skip to content

Commit

Permalink
Fixed issue with saving input lines from ActionShortcut to fix proble…
Browse files Browse the repository at this point in the history
…m in nest
  • Loading branch information
Gareth Aneurin Tribello committed Oct 7, 2024
1 parent 18896fd commit 7b6482a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/ActionShortcut.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,8 +177,8 @@ void ActionShortcut::addToSavedInputLines( const std::string& line ) {
std::string num; Tools::convert( ninstances[j], num );
if( ninstances[j]>0 ) reducedline += num + " further " + numberedkeys[j] + "n keywords, ";
}
}
savedInputLines.push_back( reducedline );
savedInputLines.push_back( reducedline );
} else savedInputLines.push_back( line );
} else savedInputLines.push_back( line );
}

Expand Down

0 comments on commit 7b6482a

Please sign in to comment.