From 36186159271444d91f84e952d0eaa506581593a6 Mon Sep 17 00:00:00 2001 From: Grimsace Date: Tue, 10 Feb 2026 12:08:15 -0600 Subject: [PATCH] changed equasion to print from top down --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index e87922f..af47269 100644 --- a/main.go +++ b/main.go @@ -55,7 +55,7 @@ func main() { diceRolls: diceRolls, result: fmt.Sprintf("= %s", strconv.FormatFloat(result, 'g', -1, 64)), } - calculations = append(calculations, c) + calculations = append([]*calculation{c}, calculations...) historyList.Refresh() diceInputEntry.SetText("") }