diff options
author | Rael <rael.gc@gmail.com> | 2015-10-25 07:55:01 -0200 |
---|---|---|
committer | Rael <rael.gc@gmail.com> | 2015-10-25 07:55:01 -0200 |
commit | f9bb7ace032f86a8cf84a89277a04ae7234c604f (patch) | |
tree | 9c957ea14571d8e50bfe45c3d3016eb63488e3aa | |
parent | eabe4af0a34f5535806f0ea0dbbe04c5e53d79aa (diff) | |
download | scudcloud-f9bb7ace032f86a8cf84a89277a04ae7234c604f.zip scudcloud-f9bb7ace032f86a8cf84a89277a04ae7234c604f.tar.gz scudcloud-f9bb7ace032f86a8cf84a89277a04ae7234c604f.tar.bz2 |
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: |