pull/276/head
Mikael Finstad 2020-02-23 00:07:52 +08:00
rodzic d91e9b1c45
commit 8a055ce1f1
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -1869,7 +1869,7 @@ const App = memo(() => {
{renderInvertCutButton()}
<Select height={20} style={{ width: 80, margin: '0 10px' }} value={zoom.toString()} title="Zoom" onChange={withBlur(e => setZoom(parseInt(e.target.value, 10)))}>
{Array(10).fill().map((unused, z) => {
{Array(13).fill().map((unused, z) => {
const val = 2 ** z;
return (
<option key={val} value={String(val)}>Zoom {val}x</option>