Skip to content

Commit

Permalink
Fix terminal output hiding during IME composition
Browse files Browse the repository at this point in the history
This would only happen when the viewport was not filled

Part of #13229
  • Loading branch information
Tyriar committed Oct 22, 2016
1 parent 1bbc6ba commit 6085bd8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@
display: block;
position: absolute;
bottom: 0;
top: 0;
}

.monaco-workbench .panel.integrated-terminal .terminal-wrapper > div {
height: 100%;
}

/* Terminal actions */
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
.monaco-workbench .panel.integrated-terminal .xterm {
background-color: transparent!important;
position: relative;
height: 100%;
}

.monaco-workbench .panel.integrated-terminal .xterm:focus {
Expand Down

0 comments on commit 6085bd8

Please sign in to comment.