Browse Source

Fixed error

Alex Sidorov 1 năm trước cách đây
mục cha
commit
2edb43cc1c
1 tập tin đã thay đổi với 3 bổ sung2 xóa
  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())