From a407ed5623d0f4140ac1be54e6179785eb4431ea Mon Sep 17 00:00:00 2001 From: Armaan Bhojwani Date: Fri, 12 Feb 2021 09:25:31 -0500 Subject: [PATCH] Modify mvwin() positioning --- lightcards/display.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lightcards/display.py b/lightcards/display.py index 98c48e7..d0c2420 100644 --- a/lightcards/display.py +++ b/lightcards/display.py @@ -63,7 +63,7 @@ class Help: def disp(self): """Display help screen""" (mlines, mcols) = self.outer.win.getmaxyx() - self.win.mvwin(int(mlines / 2) - 10, int(mcols / 2) - 26) + self.win.mvwin(int(mlines / 2) - 10, int(mcols / 2) - 25) self.panel.show() while True: @@ -183,7 +183,7 @@ class Menu: and to continue """ (mlines, mcols) = self.outer.win.getmaxyx() - self.win.mvwin(int(mlines / 2) - 9, int(mcols / 2) - 22) + self.win.mvwin(int(mlines / 2) - 9, int(mcols / 2) - 21) self.panel.show() self.menu_grab() -- 2.39.2