Skip to content

Commit

Permalink
fix: dont add spaces, dict files dont have spaces (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
GameTec-live authored Oct 10, 2023
1 parent 6400565 commit ce07728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chameleonultragui/lib/gui/menu/dictionary_view.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class DictionaryViewMenuState extends State<DictionaryViewMenu> {

String output = "";
for (var key in widget.dictionary.keys) {
output += "${bytesToHexSpace(key)}\n";
output += "${bytesToHex(key)}\n";
}
output.trim();

Expand Down

0 comments on commit ce07728

Please sign in to comment.