https://linen.dev logo
Join Discord
Powered by
# haxe-ui
  • b

    bright-gpu-74537

    02/27/2023, 8:11 PM
    not sure, looks like the notifications flash to 0x0
  • a

    ambitious-knife-25690

    02/27/2023, 8:11 PM
    i don't think this is specific with notifications
  • a

    ambitious-knife-25690

    02/27/2023, 8:11 PM
    i've seen it somewhat with other things yesterday and today, but its more repeatable with notifications
  • b

    bright-gpu-74537

    02/27/2023, 8:12 PM
    there are a few other things i notice off there - the (horizontal lines) seen to be drawn over everything else and your text measurements seem off, i would have expected those buttons to be all single line of text
  • b

    bright-gpu-74537

    02/27/2023, 8:13 PM
    does opacity work? (i dont think it does)
  • a

    ambitious-knife-25690

    02/27/2023, 8:13 PM
    the rule overlaying things i assumed was due to clipping not being fully functional
  • b

    bright-gpu-74537

    02/27/2023, 8:13 PM
    not sure any clipping is happening there
  • a

    ambitious-knife-25690

    02/27/2023, 8:14 PM
    i thought i did do opacity, but maybe i'm misremembering. lemme test
  • b

    bright-gpu-74537

    02/27/2023, 8:16 PM
    this example should test that: http://haxeui.org/explorer/#layouts/absolute_layouts
  • a

    ambitious-knife-25690

    02/27/2023, 8:16 PM
    WELL
  • a

    ambitious-knife-25690

    02/27/2023, 8:16 PM
    opacity works
  • a

    ambitious-knife-25690

    02/27/2023, 8:16 PM
    😄
  • b

    bright-gpu-74537

    02/27/2023, 8:17 PM
    hmmmm, weird that things dont seem to fade out correctly though
  • b

    bright-gpu-74537

    02/27/2023, 8:17 PM
    what about this: http://haxeui.org/explorer/#miscellaneous/animation
  • b

    bright-gpu-74537

    02/27/2023, 8:18 PM
    how have you implemented call later btw?
  • a

    ambitious-knife-25690

    02/27/2023, 8:18 PM
    huh, nothing works here
  • b

    bright-gpu-74537

    02/27/2023, 8:18 PM
    App.app.oncePostUpdate
  • a

    ambitious-knife-25690

    02/27/2023, 8:18 PM
    but i thought i tested that and it worked...
  • a

    ambitious-knife-25690

    02/27/2023, 8:18 PM
    oh, there's a haxe file
  • b

    bright-gpu-74537

    02/27/2023, 8:19 PM
    not needed for the fade in / out of the listview though
  • a

    ambitious-knife-25690

    02/27/2023, 8:19 PM
    that just insta closes
  • b

    bright-gpu-74537

    02/27/2023, 8:20 PM
    it should fade, so something is up in your backend
  • a

    ambitious-knife-25690

    02/27/2023, 8:21 PM
    Copy code
    hx
    class CallLaterImpl {
        public function new(fn:Void->Void) {
            App.app.oncePostUpdate(null, (_) -> {
                fn();
            });
        }
    }
  • b

    bright-gpu-74537

    02/27/2023, 8:21 PM
    i suspect something to do with your call later impl, but this could be a whore to debug because things are working and the function is going to be called all the time
  • b

    bright-gpu-74537

    02/27/2023, 8:21 PM
    i would try some other options there and see if anything works
  • b

    bright-gpu-74537

    02/27/2023, 8:23 PM
    oh, ok... so animation is fine... is something to do with opacity
  • b

    bright-gpu-74537

    02/27/2023, 8:23 PM
    ok, in this example: http://haxeui.org/explorer/#layouts/absolute_layouts
  • b

    bright-gpu-74537

    02/27/2023, 8:23 PM
    can you change it so the opacity isnt a style, its an xml attribute, eg:
  • b

    bright-gpu-74537

    02/27/2023, 8:24 PM
    <box left="25" top="25" width="50%" height="50%" opacity=".3" style="background-color: red;border:1px solid red;" />
  • b

    bright-gpu-74537

    02/27/2023, 8:24 PM
    fade animates
    .opacity
1...154815491550...1687Latest