gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[cash2ecash] branch master updated: debugging


From: gnunet
Subject: [cash2ecash] branch master updated: debugging
Date: Fri, 27 Dec 2024 21:37:18 +0100

This is an automated email from the git hooks/post-receive script.

manuel-geissbuehler pushed a commit to branch master
in repository cash2ecash.

The following commit(s) were added to refs/heads/master by this push:
     new b533d8f  debugging
b533d8f is described below

commit b533d8fd46f107183864cdce3d2753828473a255
Author: Manuel Geissbühler <manuel@debian>
AuthorDate: Fri Dec 27 21:37:05 2024 +0100

    debugging
---
 src/gui/screen.hpp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/gui/screen.hpp b/src/gui/screen.hpp
index 72ff62e..c974435 100644
--- a/src/gui/screen.hpp
+++ b/src/gui/screen.hpp
@@ -25,7 +25,7 @@
 class Screen {
   private:
   int32_t columnDesc[4] = {TIMELINE_COLUMN_WIDTH_PCT, MIDDLE_COLUMN_WIDTH_PCT, 
BUTTONS_COLUMN_WIDTH_PCT, LV_GRID_TEMPLATE_LAST};
-  int32_t rowDesc[7] = {INSTRUCTIONS_ROW_HEIGHT_PCT, BOTTOM_ROW_HEIGHT_PCT, 
LV_GRID_TEMPLATE_LAST};
+  int32_t rowDesc[3] = {INSTRUCTIONS_ROW_HEIGHT_PCT, BOTTOM_ROW_HEIGHT_PCT, 
LV_GRID_TEMPLATE_LAST};
 
   
   protected:
@@ -50,25 +50,25 @@ class Screen {
     lv_obj_t *label;
     timelineContainer = lv_obj_create(screenPointer);
     lv_obj_set_size(timelineContainer, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
-    lv_obj_set_grid_cell(timelineContainer, LV_GRID_ALIGN_START, 0, 1, 
LV_GRID_ALIGN_START, 0, 2);
+    lv_obj_set_grid_cell(timelineContainer, LV_GRID_ALIGN_CENTER, 0, 1, 
LV_GRID_ALIGN_CENTER, 0, 2);
     label = lv_label_create(timelineContainer);
     lv_label_set_text(label, "timelineContainer");
     
     instructionsContainer = lv_obj_create(screenPointer);
     lv_obj_set_size(instructionsContainer, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
-    lv_obj_set_grid_cell(instructionsContainer, LV_GRID_ALIGN_START, 1, 1, 
LV_GRID_ALIGN_START, 0, 1);
+    lv_obj_set_grid_cell(instructionsContainer, LV_GRID_ALIGN_CENTER, 1, 1, 
LV_GRID_ALIGN_CENTER, 0, 1);
     label = lv_label_create(instructionsContainer);
     lv_label_set_text(label, "instructionsContainer");
     
     buttonsContainer = lv_obj_create(screenPointer);
     lv_obj_set_size(buttonsContainer, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
-    lv_obj_set_grid_cell(buttonsContainer, LV_GRID_ALIGN_START, 2, 1, 
LV_GRID_ALIGN_START, 0, 2);
+    lv_obj_set_grid_cell(buttonsContainer, LV_GRID_ALIGN_CENTER, 2, 1, 
LV_GRID_ALIGN_CENTER, 0, 2);
     label = lv_label_create(buttonsContainer);
     lv_label_set_text(label, "buttonsContainer");
     
     mainContentContainer = lv_obj_create(screenPointer);
     lv_obj_set_size(mainContentContainer, LV_SIZE_CONTENT, LV_SIZE_CONTENT);
-    lv_obj_set_grid_cell(mainContentContainer, LV_GRID_ALIGN_START, 1, 1, 
LV_GRID_ALIGN_START, 1, 1);
+    lv_obj_set_grid_cell(mainContentContainer, LV_GRID_ALIGN_CENTER, 1, 1, 
LV_GRID_ALIGN_CENTER, 1, 1);
     label = lv_label_create(mainContentContainer);
     lv_label_set_text(label, "mainContenContainer");
     

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]