madprops
madprops
Having a problem related to scroll position of other elements when a process is triggered: ``` computedVariables ( '--expand', (value, event, tag) => { tag.style.height = 'auto' const height =...
``` computedVariables ( '--expand', (value, event, tag) => { // tag.style.height = 'auto' const height = tag.scrollHeight // tag.style.height = '' if(Hue.last_input_height && Hue.last_input_height !== height) { Hue.resize_timer() } Hue.last_input_height...
Ok I fixed it by changing "auto" to what I have set as min-height (it was happening with 'inherit' too btw): ``` computedVariables ( '--expand', (value, event, tag) => {...
Nevermind, it's not fixed. If I use backspace to remove lines it shrinks, but if I select all text and delete it doesn't calculate it correctly..
Ok fixed. CSS mod on #input ``` min-height: calc(2rem - 0.6rem); ``` JS mod: ``` computedVariables ( '--expand', (value, event, tag) => { $("#footer").css("height", $("#footer").height()) tag.style.height = 'auto' const height...
I want to ask the opposite. How do I easily just drag the window to capture a corner? I don't intend it to go fullscreen in that case.
I'm looking for this. It doesn't even have to be incredibly secure, just hiding the visible input would be enough for lots of cases.
Hmm not sure how to do this. It seems to define a highlighter I need to provide a helper, and to do that I need to implement all the helper...
I made this repo based on andreblanke's patch https://github.com/madprops/copyevent
This is my idea:  Basically to confirm you just move to the submenu and click. Clicking quit itself does nothing. And it's incredibly easy to implement. But developing some...