Skip to content

Commit 07d17f8

Browse files
committed
Added a maxwidth to project inputs
1 parent 226cf78 commit 07d17f8

File tree

5 files changed

+11
-15
lines changed

5 files changed

+11
-15
lines changed

CHANGELOG

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
- Fixed a keycombination event bug [#29](/../../issues/29)
2323
- Fixed corrupted art when importing transparent PNGs [#22](/../../issues/22)
2424
- Performance improvements to remove lag
25-
- Created project files for s1disasm
25+
- Created project files for s1disasm, s2disasm
2626

2727
## [0.0.8]
2828
- Changed default palette from Sonic 2 to the SCH unified palette

TODO

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
DOC
22
==
33
1.0.0 - breaking change to select mapping format
4-
megadrive sprite editor (kirjava.xyz
5-
project menu explain
6-
spritesmind
74
data parser, not text
8-
post image of project / some custom mappings, saying it's ready for testing
5+
push project files to disassemblies
96

107
BUFFER
118
==
@@ -19,9 +16,9 @@ definition([
1916
many(art()),
2017
])
2118

22-
// project files
23-
// check palette is loading correctly in s1
2419
// provide custom art function
20+
// custom asm parser
21+
// custom palettes
2522

2623
/* https://unix.stackexchange.com/questions/585645/launch-an-application-by-a-double-click */
2724
// provide a custom definition, but have a default
@@ -47,7 +44,6 @@ definition([
4744
/* http://info.sonicretro.org/Disassemblies */
4845

4946
ROADMAP
50-
custom mapping formats
5147
generate project files -> use to create s3portal
5248
rotsprite
5349
export spritesheet

app/components/project/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ const Project = observer(() => {
8989
e.target.value;
9090
}}
9191
size={rowInfo.node.name.length}
92+
style={{ maxWidth: 160 }}
9293
onChange={() => {}}
9394
/>
9495
</label>

styles/components/project-tree.scss

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
.tree {
1+
.project .tree {
2+
width: 330px;
3+
height: 100%;
4+
display: flex;
5+
flex-direction: column;
6+
27
.rst__tree > div > div:focus {
38
outline: none;
49
}

styles/components/project.scss

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,12 +28,6 @@
2828
min-width: 215px;
2929
}
3030

31-
.tree {
32-
width: 330px;
33-
height: 100%;
34-
display: flex;
35-
flex-direction: column;
36-
}
3731
.config {
3832
width: 100%;
3933
max-width: 1000px;

0 commit comments

Comments
 (0)