Skip to content

Commit

Permalink
Merge branch 'main' into bugfixing
Browse files Browse the repository at this point in the history
  • Loading branch information
mostypc123 authored Jan 8, 2025
2 parents 2e02cb0 + 200d130 commit 28d731c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions src/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1122,7 +1122,6 @@ def OnChar(self, event):
if current_tab:
editor_splitter = current_tab.GetChildren()[0]
text_area = editor_splitter.GetChildren()[0]

key_code = event.GetKeyCode()
try:
# Auto-close brackets
Expand Down Expand Up @@ -1186,8 +1185,8 @@ def OnChar(self, event):
except Exception as e:
self.SetStatusText(f" Error running onchar: {str(e)}", 2)

event.Skip()

event.Skip() # Continue processing other key events
def OnExit(self, event):
self.SetStatusText(" Exiting XediX...")
time.sleep(1)
Expand Down
4 changes: 2 additions & 2 deletions src/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ markdown==3.7
pyperclip==1.9.0
psutil==6.1.1
requests==2.32.3
pyflakes==2.4.0
pylint==2.12.2
pyflakes==3.2.0
pylint==3.3.3

0 comments on commit 28d731c

Please sign in to comment.