Skip to content

Commit

Permalink
gui_qt/suggestions: fix suggestions
Browse files Browse the repository at this point in the history
Take into account changes to formatting's API.
  • Loading branch information
benoit-pierre committed Dec 4, 2017
1 parent ccd68b1 commit f7747ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plover/gui_qt/suggestions_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class SuggestionsDialog(Tool, Ui_SuggestionsDialog):
ROLE = 'suggestions'
SHORTCUT = 'Ctrl+J'

WORD_RX = re.compile(r'((\w+|[^\w\s]+)\s*)')
WORD_RX = re.compile(r'(?:\w+|[^\w\s]+)\s*')

STYLE_TRANSLATION, STYLE_STROKES = range(2)

Expand Down

0 comments on commit f7747ff

Please sign in to comment.