mirror of
https://github.com/gchq/CyberChef.git
synced 2025-05-07 06:57:12 -04:00
[#181] add splitter column minimal widths to prevent unwanted overflows under any situation
This commit is contained in:
parent
0868d97cee
commit
fefb98e466
2 changed files with 1 additions and 4 deletions
|
@ -314,7 +314,7 @@ class App {
|
|||
|
||||
this.columnSplitter = Split(["#operations", "#recipe", "#IO"], {
|
||||
sizes: [20, 30, 50],
|
||||
minSize: minimise ? [0, 0, 0] : [20, 330, 50],
|
||||
minSize: minimise ? [0, 0, 0] : [20, 330, 310],
|
||||
gutterSize: 4,
|
||||
expandToMin: true,
|
||||
onDrag: debounce(function() {
|
||||
|
|
|
@ -8,9 +8,6 @@
|
|||
- maybe a bit annoying that the fav cat opens whenever you add a new fav via icon-fav-click on mobile
|
||||
- backspace on fs view should close max view. Keep making the same mistake and navigating away when for instance recipe is expanded and double click the window to fs > resolve. Reset layout
|
||||
|
||||
### Desktop
|
||||
- fixed status panel ( rhs ) overlays recipe column if split all the way to the right
|
||||
|
||||
### JS:
|
||||
- `core/Recipe.mjs`, `core/lib/Magic.js` return imports to original
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue