Skip to content

Commit

Permalink
CE: fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jxarco committed Jan 29, 2024
1 parent bb5163b commit d489411
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/components/codeeditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ class CodeEditor {
// Add search LINE box
{
var box = document.createElement( 'div' );
box.className = "searchbox";
box.className = "searchbox gotoline";

var searchPanel = new LX.Panel();
box.appendChild( searchPanel.root );
Expand Down
4 changes: 4 additions & 0 deletions build/lexgui.css
Original file line number Diff line number Diff line change
Expand Up @@ -3013,6 +3013,10 @@ pre .line-gutter {
transition: transform 0.2s ease-in;
}

.lexcodeeditor .searchbox.gotoline {
width: 124px;
}

.lexcodeeditor .searchbox.opened {
transform: translateY(0px);
}
Expand Down
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
## 0.1.22

Added REDO using "Ctrl+Y".
Added FontSize customization. "Ctrl+PLUS", "Ctrl+MINUS" or "Ctrl+Wheel"
Added FontSize customization. "Ctrl+PLUS", "Ctrl+MINUS" or "Ctrl+Wheel".
Added "Ctrl+G" to scroll to specific line.
General bug fixes.

## 0.1.21
Expand Down

0 comments on commit d489411

Please sign in to comment.