Allow tab to leave edit boxes.

This commit is contained in:
Jim Miller 2020-11-26 14:21:01 -06:00
parent 738da1af0e
commit 8cc21d19ec

View file

@ -185,6 +185,7 @@ class NotGoingToDownload(Exception):
class DroppableQTextEdit(QTextEdit):
def __init__(self,parent):
QTextEdit.__init__(self,parent)
self.setTabChangesFocus(True)
def dropEvent(self,event):
# print("event:%s"%event)