mirror of
https://github.com/JimmXinu/FanFicFare.git
synced 2025-12-06 08:52:55 +01:00
Allow tab to leave edit boxes.
This commit is contained in:
parent
738da1af0e
commit
8cc21d19ec
1 changed files with 1 additions and 0 deletions
|
|
@ -185,6 +185,7 @@ class NotGoingToDownload(Exception):
|
||||||
class DroppableQTextEdit(QTextEdit):
|
class DroppableQTextEdit(QTextEdit):
|
||||||
def __init__(self,parent):
|
def __init__(self,parent):
|
||||||
QTextEdit.__init__(self,parent)
|
QTextEdit.__init__(self,parent)
|
||||||
|
self.setTabChangesFocus(True)
|
||||||
|
|
||||||
def dropEvent(self,event):
|
def dropEvent(self,event):
|
||||||
# print("event:%s"%event)
|
# print("event:%s"%event)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue