diff options
author | portix <portix@gmx.net> | 2014-03-10 03:24:42 +0100 |
---|---|---|
committer | portix <portix@gmx.net> | 2014-03-10 03:24:42 +0100 |
commit | 34c3d3b9f24f723b7dd67b44b1afe8b349eb785c (patch) | |
tree | 1d457947936ec5b4992674a0f5d1991857fa010b | |
parent | 17cfd4dcc35afee0b20ef632660bcfdc45ffec90 (diff) | |
download | dwb-34c3d3b9f24f723b7dd67b44b1afe8b349eb785c.zip |
completion: Show completion widget if fixed height is defined
-rw-r--r-- | scripts/modules/completion | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/modules/completion b/scripts/modules/completion index 527d57d6..ad71f361 100644 --- a/scripts/modules/completion +++ b/scripts/modules/completion @@ -288,6 +288,9 @@ Object.defineProperties(Completion.prototype, { this._sigKeyRelease.connect(); this._doUpdate(this.onShow()); + if (this.height) { + mWidget.visible = true; + } } }, _startup : { |