Skip to content

Commit

Permalink
Merge pull request autokey#842 from Elliria/master
Browse files Browse the repository at this point in the history
Change clipboard wording in the documentation for clarity.
  • Loading branch information
josephj11 authored Apr 22, 2023
2 parents f22d160 + c9e9d0d commit 717f903
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ Other changes
- Update pip installation requirements
- Add CONTRIBUTERS.rst
- Internal Code cleanup. The configuration handling module is split into multiple modules inside a dedicated package.
- Change clipboard wording in the AutoKey documentation.
- AutoKey now has a working test environment again. `pytest` based unit-tests can be launched from the source checkout using `python3 setup.py test`

**New Dependencies (test-time only)**
Expand Down
2 changes: 1 addition & 1 deletion lib/autokey/scripting/clipboard_gtk.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def fill_clipboard(self, contents):
Usage: C{clipboard.fill_clipboard(contents)}
@param contents: string to be placed in the selection
@param contents: string to be placed onto the clipboard
"""
Gdk.threads_enter()
if Gtk.get_major_version() >= 3:
Expand Down
2 changes: 1 addition & 1 deletion lib/autokey/scripting/clipboard_qt.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def fill_clipboard(self, contents):
Usage: C{clipboard.fill_clipboard(contents)}
@param contents: string to be placed in the selection
@param contents: string to be placed onto the clipboard
"""
self.__execAsync(self.__fillClipboard, contents)

Expand Down

0 comments on commit 717f903

Please sign in to comment.