changed equasion to print from top down

This commit is contained in:
Grimsace
2026-02-10 12:08:15 -06:00
parent f62c3833db
commit 3618615927
+1 -1
View File
@@ -55,7 +55,7 @@ func main() {
diceRolls: diceRolls, diceRolls: diceRolls,
result: fmt.Sprintf("= %s", strconv.FormatFloat(result, 'g', -1, 64)), result: fmt.Sprintf("= %s", strconv.FormatFloat(result, 'g', -1, 64)),
} }
calculations = append(calculations, c) calculations = append([]*calculation{c}, calculations...)
historyList.Refresh() historyList.Refresh()
diceInputEntry.SetText("") diceInputEntry.SetText("")
} }