Skip to content

Commit

Permalink
Prevent text cursor position changing when you're typing the query
Browse files Browse the repository at this point in the history
  • Loading branch information
friday committed Sep 15, 2022
1 parent b9a204e commit c9145fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ulauncher/ui/windows/UlauncherWindow.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def on_input_changed(self, _):
"""
Triggered by user input
"""
self.app.query = self.input.get_text()
self.app._query = self.input.get_text().lstrip()
ModeHandler.get_instance().on_query_change(self.app.query)

@Gtk.Template.Callback()
Expand Down

0 comments on commit c9145fa

Please sign in to comment.