Skip to content

Commit 004a807

Browse files
devvaannshabose
authored andcommitted
refactor: better restore icon for bottom panel
1 parent b056071 commit 004a807

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/view/PanelView.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -649,10 +649,10 @@ define(function (require, exports, module) {
649649
let $icon = $btn.find("i");
650650
if (_isMaximized) {
651651
$icon.removeClass("fa-regular fa-square")
652-
.addClass("fa-solid fa-window-restore");
652+
.addClass("fa-regular fa-window-restore");
653653
$btn.attr("title", Strings.BOTTOM_PANEL_RESTORE);
654654
} else {
655-
$icon.removeClass("fa-solid fa-window-restore")
655+
$icon.removeClass("fa-regular fa-window-restore")
656656
.addClass("fa-regular fa-square");
657657
$btn.attr("title", Strings.BOTTOM_PANEL_MAXIMIZE);
658658
}

0 commit comments

Comments
 (0)