Merge dev-1.1 into main. #11

Closed
LukeGus wants to merge 71 commits from main into dev-1.1
Showing only changes of commit ea2343551d - Show all commits

View File

@@ -57,7 +57,7 @@ const App = () => {
const newZoomFactor = Math.max(0.5, Math.min(2, containerHeight / 300)); // Adjust this logic as needed
if (zoomFactor !== newZoomFactor) {
setZoomFactor(newZoomFactor);
terminal.current.setOption('fontSize', 14 * newZoomFactor); // Adjust font size based on zoom
terminal.current.setFontSize(14 * newZoomFactor); // Corrected font size update
}
};