From 0bd63f680432e51f8dc09f421bf55192adf86d06 Mon Sep 17 00:00:00 2001
From: Gabriel Tofvesson <gabriel@tofvesson.se>
Date: Sat, 12 Oct 2024 00:11:39 +0200
Subject: [PATCH] Set default Progress orientation to HORIZONTAL

---
 gfx/progress.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gfx/progress.lua b/gfx/progress.lua
index 5f57be2..aa95389 100644
--- a/gfx/progress.lua
+++ b/gfx/progress.lua
@@ -20,7 +20,7 @@ local Progress = Prop.attach(Element:new{
   progress = 0.0,
   active = nil,
   inactive = nil
-}, Orientation, Orientation.VERTICAL)
+}, Orientation, Orientation.HORIZONTAL)
 
 function Progress:new(o)
   local template = o or {}