diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ad11a0f..ddf41894 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/galacteek/ui/widgets/__init__.py b/galacteek/ui/widgets/__init__.py index a5ac13be..f03ac262 100644 --- a/galacteek/ui/widgets/__init__.py +++ b/galacteek/ui/widgets/__init__.py @@ -1636,6 +1636,9 @@ def onTimerOut(self): self.updateTimer.stop() + # Refocus + self.textEditUser.setFocus(Qt.OtherFocusReason) + class AtomFeedsToolbarButton(QToolButton): subscribeResult = pyqtSignal(str, int)