Skip to content

Commit

Permalink
Merge pull request #47 from int3nse-git/patch-1
Browse files Browse the repository at this point in the history
Minor visual fixes to input box
  • Loading branch information
Ruslan Garifullin authored Jul 11, 2021
2 parents ce62acf + b8e20aa commit 82880c8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/InputPanel/InputPanel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,7 @@ export class InputPanel extends QWidget {
input.addEventListener(WidgetEventTypes.DragEnter, this.handleDrag.bind(this));
input.addEventListener(WidgetEventTypes.KeyPress, this.handleKeyPress.bind(this));
input.addEventListener(WidgetEventTypes.KeyRelease, this.handleKeyRelease.bind(this));
input.addEventListener('textChanged', this.adjustInputSize.bind(this));

rootLayout.addWidget(addBtn);
rootLayout.addWidget(input, 1);
Expand Down

0 comments on commit 82880c8

Please sign in to comment.