Skip to content

Commit

Permalink
Fix Markdown text edit focus bug
Browse files Browse the repository at this point in the history
  • Loading branch information
cipres authored and cipres committed Mar 14, 2021
1 parent 67a5d1f commit 40d9cfa
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ workspace).
### Added
- Use *go-ipfs* version: *0.8.0*
- Use *PyQt* version: *5.15.2*
- Use *PyQtWebengine* version: *5.15.2*
- Use *PyQtWebEngine* version: *5.15.2*
- Support for remote pinning services (yay!)
- Configure your RPS from the settings (tested with *Pinata*)
- From the PIN object buttons (blue pin) you can choose to
Expand All @@ -46,6 +46,7 @@ workspace).

### Fixed
- Fix mkdocs website creation on non-Linux platforms
- Focus bug in the markdown editor

## [0.4.42] - 2020-12-12

Expand Down
3 changes: 3 additions & 0 deletions galacteek/ui/widgets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1636,6 +1636,9 @@ def onTimerOut(self):

self.updateTimer.stop()

# Refocus
self.textEditUser.setFocus(Qt.OtherFocusReason)


class AtomFeedsToolbarButton(QToolButton):
subscribeResult = pyqtSignal(str, int)
Expand Down

0 comments on commit 40d9cfa

Please sign in to comment.