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

    ambitious-knife-25690

    05/06/2023, 11:36 AM
    (its the window manager code from the explorer)
  • b

    bright-gpu-74537

    05/06/2023, 11:38 AM
    certainly not intended
  • b

    bright-gpu-74537

    05/06/2023, 11:38 AM
    is this the very latest?
  • b

    bright-gpu-74537

    05/06/2023, 11:38 AM
    i added a fix a few days back... just making sure you have that also
  • a

    ambitious-knife-25690

    05/06/2023, 11:40 AM
    it is the latest
  • a

    ambitious-knife-25690

    05/06/2023, 11:40 AM
    buuut... it works fine here
  • b

    bright-gpu-74537

    05/06/2023, 11:40 AM
    alright, must be a bug thne
  • b

    bright-gpu-74537

    05/06/2023, 11:40 AM
    thats not using the latest, thats why
  • a

    ambitious-knife-25690

    05/06/2023, 11:40 AM
    ahh
  • b

    bright-gpu-74537

    05/06/2023, 11:44 AM
    WARNING: layout 'horizontal' not found
  • b

    bright-gpu-74537

    05/06/2023, 11:45 AM
    interesting... same thing you mentioned in the ceramic room
  • b

    bright-gpu-74537

    05/06/2023, 11:46 AM
    ok, its a load order... module isnt loaded at that point...
  • b

    bright-gpu-74537

    05/06/2023, 12:02 PM
    can you pull latest and see if its all good now (explorer works fine locally now)
  • a

    ambitious-knife-25690

    05/06/2023, 12:48 PM
    works now 😄
  • r

    refined-greece-48002

    05/06/2023, 6:54 PM
    I had this same issue, but fixed it by removing the "layout horizontal" and instead putting everything inside the item renderer inside a hbox
  • r

    refined-greece-48002

    05/06/2023, 6:54 PM
    Ah it wasn't intended? 😅
  • b

    bright-gpu-74537

    05/06/2023, 7:11 PM
    nope, not intentional, layouts are now auto discovered via modules (like components) and that caused a few teething issues, should all be sorted now
  • r

    refined-greece-48002

    05/07/2023, 7:42 AM
    (rescinded query, might need to check more on my end first...)
  • b

    bright-gpu-74537

    05/07/2023, 10:42 AM
    @ambitious-knife-25690 - if you get a moment, can you pull latest haxeui-core, i found another niggly issue with the layout registration, which ive fixed, but just want to make sure i havent broken something in the process
  • b

    bright-gpu-74537

    05/07/2023, 10:50 AM
    @full-journalist-82607 - is "Shallowmallow" you?
  • f

    full-journalist-82607

    05/07/2023, 11:18 AM
    🕵️ 🤫
  • i

    icy-zebra-52882

    05/07/2023, 2:22 PM
    is there a list of component style IDs of built-in components, for use in theming?
  • i

    icy-zebra-52882

    05/07/2023, 2:23 PM
    I want to be able to find out what I would use as a CSS identifier for something like a messagebox header bar
  • i

    icy-zebra-52882

    05/07/2023, 2:24 PM
    had a dig about in haxeui-core code but unless I'm missing something easy I couldn't find it
  • b

    bright-gpu-74537

    05/07/2023, 2:28 PM
    there is nothing super simple and collated im afraid, your best bet is to look at the default theme: https://github.com/haxeui/haxeui-core/tree/master/haxe/ui/_module/styles/default for example, message box is just a dialog: https://github.com/haxeui/haxeui-core/blob/master/haxe/ui/_module/styles/default/dialogs.css I keep thinking an "inspector" might be a nice addition so you can drill down into all the sub components
  • i

    icy-zebra-52882

    05/07/2023, 2:30 PM
    I found it just as I posted actually, in `DialogBase.hx`:
    Copy code
    haxe
    public function new() {
        super();
    
        dialogContainer = new haxe.ui.containers.VBox();
        dialogContainer.id = "dialog-container";
        dialogContainer.styleNames = "dialog-container";
        dialogContainer.scriptAccess = false;
        addComponent(dialogContainer);
      ...
    }
  • i

    icy-zebra-52882

    05/07/2023, 2:31 PM
    an inspector or even just a labelled image with styleNames added would be useful for documentation
  • b

    bright-gpu-74537

    05/07/2023, 2:31 PM
    sure, i mean, its all there in the code (and the css), but yeah, its not nice and easy like "use this css rule" type of thing
  • i

    icy-zebra-52882

    05/07/2023, 2:31 PM
    now to see if that rule actually worked
  • i

    icy-zebra-52882

    05/07/2023, 2:32 PM
    it did!

    https://plzlookat.mystupid.pictures/HelloWorld_xI8Cqa8Qq2.png▾

1...166016611662...1687Latest