Skip to content

Commit

Permalink
Implement abstract methods so WorkboxTextEdit can be used
Browse files Browse the repository at this point in the history
  • Loading branch information
macevhicz authored and MHendricks committed Aug 16, 2024
1 parent 0cf9ff5 commit 63fb0bb
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions preditor/gui/workbox_text_edit.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ def __init__(
highlight.setLanguage('Python')
self.uiCodeHighlighter = highlight

def __auto_complete_enabled__(self):
pass

def __set_auto_complete_enabled__(self, state):
pass

def __copy_indents_as_spaces__(self):
"""When copying code, should it convert leading tabs to spaces?"""
return False
Expand Down

0 comments on commit 63fb0bb

Please sign in to comment.