diff options
author | Rael Gugelmin Cunha <rael.gc@gmail.com> | 2015-10-25 07:55:41 -0200 |
---|---|---|
committer | Rael Gugelmin Cunha <rael.gc@gmail.com> | 2015-10-25 07:55:41 -0200 |
commit | 6dc6a9fc925ef6ac5e9510ad6555edc8938d7f73 (patch) | |
tree | 9c957ea14571d8e50bfe45c3d3016eb63488e3aa | |
parent | eabe4af0a34f5535806f0ea0dbbe04c5e53d79aa (diff) | |
parent | f9bb7ace032f86a8cf84a89277a04ae7234c604f (diff) | |
download | scudcloud-6dc6a9fc925ef6ac5e9510ad6555edc8938d7f73.zip scudcloud-6dc6a9fc925ef6ac5e9510ad6555edc8938d7f73.tar.gz scudcloud-6dc6a9fc925ef6ac5e9510ad6555edc8938d7f73.tar.bz2 |
Merge pull request #272 from raelgc/268-setfocus-after-switch-team
Set focus after switch teams (#268)
-rwxr-xr-x | scudcloud-1.0/lib/scudcloud.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scudcloud-1.0/lib/scudcloud.py b/scudcloud-1.0/lib/scudcloud.py index c590b09..9b84906 100755 --- a/scudcloud-1.0/lib/scudcloud.py +++ b/scudcloud-1.0/lib/scudcloud.py @@ -276,6 +276,7 @@ class ScudCloud(QtGui.QMainWindow): if self.stackedWidget.widget(i).url().toString().startswith(url): self.stackedWidget.setCurrentIndex(i) self.quicklist(self.current().listChannels()) + self.current().setFocus() exists = True break if not exists: |