From 21ae71b0ad412014142ff17bc795bae998aaab8e Mon Sep 17 00:00:00 2001 From: lsh Date: Sun, 18 Jul 2021 12:29:07 +0900 Subject: [PATCH] popUp position changed --- libs/labelDialog.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/labelDialog.py b/libs/labelDialog.py index 1ee3a1991..57e129966 100644 --- a/libs/labelDialog.py +++ b/libs/labelDialog.py @@ -75,7 +75,7 @@ def pop_up(self, text='', move=True): if cursor_pos.x() > max_global.x(): cursor_pos.setX(max_global.x()) if cursor_pos.y() > max_global.y(): - cursor_pos.setY(max_global.y()) + cursor_pos.setY(max_global.y()-100) self.move(cursor_pos) return self.edit.text() if self.exec_() else None