Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
lirantal committed Apr 26, 2024
2 parents 951cfcc + dbe3187 commit fb7f7b7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dockerRunScript.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ printf '\e[?1000l'
docker exec -it "$1" /bin/sh -c "[ -e /bin/bash ] && /bin/bash || /bin/sh"

# enable mouse as input source for dockly
printf '\e[?1000h'
#printf '\e[?1000h'
2 changes: 1 addition & 1 deletion src/widgetsTemplates/list.widget.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ class myWidget extends baseWidget(EventEmitter) {
parent: this.screen,
label: this.label,
keys: true,
mouse: true,
mouse: false,
data: null,
tags: true,
interactive: true,
Expand Down
2 changes: 1 addition & 1 deletion src/widgetsTemplates/logs.widget.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ class myWidget extends baseWidget() {
const formation = (this.isExpanded ? EXPANDED_LAYOUT : this.grid.gridLayout)
return this.grid.gridObj.set(...formation, this.blessed.log, {
label: this.label,
mouse: true,
mouse: false,
scrollable: true,
alwaysScroll: true,
keys: true,
Expand Down
2 changes: 1 addition & 1 deletion widgets/toolbar.widget.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class myWidget extends baseWidget(EventEmitter) {

return this.grid.gridObj.set(...this.grid.gridLayout, this.blessed.listbar, {
keys: false,
mouse: true,
mouse: false,
style: {
prefix: {
fg: 'yellow'
Expand Down

0 comments on commit fb7f7b7

Please sign in to comment.