浏览代码

Fixed error

Alex Sidorov 1 年之前
父节点
当前提交
2edb43cc1c
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      PropuskWidgets/PLineEdit.py

+ 3 - 2
PropuskWidgets/PLineEdit.py

@@ -19,9 +19,10 @@ class PLineEdit(QLineEdit):
 
     def __create_id(self) -> None:
         self.setText(datetime.now().strftime("%Y%m%d%H%M%S"))
+    
         
-    def mousePressEvent(self) -> None:
+    def mousePressEvent(self, action) -> None:
         self.__create_id()
-    
+        
     def get_value(self) -> None:
         return int(self.text())