Aleš Katona
Aleš Katona
I suspect this will have to fall on the driver side, but it poses a good general question on "format mapping and representation" in general. I don't have a strong...
I don't think this should be the default. Could we feature-gate it? I suspect it might be a net negative in some cases to inline.
> `Window` wasn't really meant to be used like this. It is meant to be a top level thing and not be use as a subelement. > > If we...
> > > `Window` wasn't really meant to be used like this. It is meant to be a top level thing and not be use as a subelement. > >...
[here's a playground link](https://slintpad.com/?snippet=import+%7B+VerticalBox+%2C+Button%2C+StandardListView%2C+GroupBox%2C+StandardButton%7D+from+%22std-widgets.slint%22%3B%0A%0Aexport+component+MainWindow+inherits+Window+%7B%0A++++width%3A+200px%3B%0A++++height%3A+200px%3B%0A%0A++++popup+%3A%3D+Dialog+%7B%0A++++++++x%3A+10px%3B%0A++++++++y%3A+10px%3B%0A++++++++z%3A+1.0%3B%0A++++++++visible%3A+false%3B%0A%0A++++++++Rectangle+%7B%0A++++++++++++background%3A+green%3B%0A%0A++++++++++++GroupBox+%7B%0A++++++++++++++++title%3A+%22Popup%22%3B%0A%0A++++++++++++++++VerticalLayout+%7B%0A++++++++++++++++++++width%3A+100%25%3B%0A++++++++++++++++++++Text+%7B%0A++++++++++++++++++++++++text%3A+%22TEST%22%3B%0A++++++++++++++++++++%7D%0A++++++++++++++++%7D%0A++++++++++++%7D%0A++++++++%7D%0A%0A++++++++StandardButton+%7B%0A++++++++++++kind%3A+ok%3B%0A++++++++++++clicked+%3D%3E+%7B%0A++++++++++++++++popup.visible+%3D+false%3B%0A++++++++++++%7D%0A++++++++%7D%0A++++%7D%0A%0A++++VerticalBox+%7B+%0A++++++++StandardListView+%7B+%0A++++++++++++model%3A+%5B%0A++++++++++++++++%7B+text%3A+%22first+row%22+%7D%2C%0A++++++++++++++++%7B+text%3A+%22second+row%22+%7D%2C%0A++++++++++++++++%7B+text%3A+%22third+row%22+%7D%2C%0A++++++++++++%5D%3B%0A++++++++%7D%0A%0A++++++++Button+%7B+%0A++++++++++++text%3A+%22popup%22%3B%0A%0A++++++++++++clicked+%3D%3E+%7B%0A++++++++++++++++popup.visible+%3D+true%3B%0A++++++++++++%7D%0A++++++++%7D%0A++++%7D%0A%7D) showing the `Dialog` case where you can still click the underlaying active items "through" the dialog as well as the transparent background around the standard buttons...
> Yes, `Dialog` does not behave like a popup :(. You need to use a `PopupWindow` like [this](https://slintpad.com/?snippet=import+%7B+VerticalBox+%2C+Button%2C+StandardListView%2C+GroupBox%2C+StandardButton%7D+from+%22std-widgets.slint%22%3B%0A%0Aexport+component+MainWindow+inherits+Window+%7B%0A++++width%3A+200px%3B%0A++++height%3A+200px%3B%0A%0A++++popup+%3A%3D+PopupWindow+%7B%0A++++++++x%3A+10px%3B%0A++++++++y%3A+10px%3B%0A++++++++z%3A+1.0%3B%0A++++++++close-on-click%3A+false%3B%0A%0A++++++++VerticalLayout+%7B%0A++++++++++++Rectangle+%7B%0A++++++++++++++++background%3A+green%3B%0A%0A++++++++++++++++GroupBox+%7B%0A++++++++++++++++++++title%3A+%22Popup%22%3B%0A%0A++++++++++++++++++++VerticalLayout+%7B%0A++++++++++++++++++++++++width%3A+100%25%3B%0A++++++++++++++++++++++++Text+%7B%0A++++++++++++++++++++++++++++text%3A+%22TEST%22%3B%0A++++++++++++++++++++++++%7D%0A++++++++++++++++++++%7D%0A++++++++++++++++%7D%0A++++++++++++%7D%0A%0A++++++++++++StandardButton+%7B%0A++++++++++++++++kind%3A+ok%3B%0A++++++++++++++++clicked+%3D%3E+%7B%0A++++++++++++++++++++popup.close%28%29%3B%0A++++++++++++++++%7D%0A++++++++++++%7D%0A++++++++%7D%0A++++%7D%0A%0A++++VerticalBox+%7B+%0A++++++++StandardListView+%7B+%0A++++++++++++model%3A+%5B%0A++++++++++++++++%7B+text%3A+%22first+row%22+%7D%2C%0A++++++++++++++++%7B+text%3A+%22second+row%22+%7D%2C%0A++++++++++++++++%7B+text%3A+%22third+row%22+%7D%2C%0A++++++++++++%5D%3B%0A++++++++%7D%0A%0A++++++++Button+%7B+%0A++++++++++++text%3A+%22popup%22%3B%0A%0A++++++++++++clicked+%3D%3E+%7B%0A++++++++++++++++popup.show%28%29%3B%0A++++++++++++%7D%0A++++++++%7D%0A++++%7D%0A%7D) instead. > > I wonder what's actionable feedback on this issue. >...
Password requirement is what `geth` has right now as the password is essentially just passed on to geth using the RPC. I'm not aware of any limitations wrt. the RPC...
There are a few things that jump out at me from what you posted: 1. I have an old 2009 mac book pro and I can run latest etherwall on...
Try setting the geth datadir path to `~/Library/Ethereum` where ~ is replaced by `/Users//` That should fix the datadir problem. You can also look into that folder to see if...
Your geth path looks ok. I'd suggest downloading latest official geth and putting it somewhere then pointing etherwall to it. Dňa nedeľa, 23. októbra 2022, tweaver123 napísal: > Hey Ales...