Skip to content

Commit

Permalink
better character used for minimize button
Browse files Browse the repository at this point in the history
  • Loading branch information
M-Valentino committed Aug 16, 2024
1 parent 5684ab6 commit 2f4f2e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/system/gui.js
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ function createMinimizeButton(currentWindowID) {
let minimizeButton = document.createElement("button");
minimizeButton.id = `min${currentWindowID}`; // Unique ID for the close button
minimizeButton.classList = "osElemBase oSButton windowControlButton";
minimizeButton.textContent = "__";
minimizeButton.textContent = "_";
minimizeButton.style.float = "right";
minimizeButton.onclick = function () {
minimizeProgram(`win${currentWindowID}`, `men${currentWindowID}`);
Expand Down

0 comments on commit 2f4f2e4

Please sign in to comment.