Matthieu Dartiailh

Results 190 comments of Matthieu Dartiailh

@frmdstryr could detail a bit how you managed to reach that point ? I am wondering if something similar for VS Code could be done.

I must say I don't really understand why your example does not work (but I have not tried to run it). You can have a look at https://github.com/Exopy/exopy/blob/master/exopy/utils/widgets/qt_list_str_widget.py for a...

Could you post your code here ? I have never attempted to style a custom widget but it should work as long as your widget implementation inherit from QtWidget which...

Also could you post your second RawWidget attempt. I will try to give it a more thorough look.

Reading in more details your code, I noticed some issues: - you should not call an Event but simply assign to it. I am not sure why your proxy case...

I tried to reproduce using the following: ``` python from enaml.widgets.api import Window, Container, ScrollArea, Field from enaml.layout.api import hbox from enaml.core.api import Include enamldef Item(Container): #constraints = [hbox(l1, l2),...

I can reproduce and explain what is happening. First you must realize that size of outer containers is not fixed but determined by the solver based on the size of...

I am not sure to follow your issue. Adapting the code to generate different names I get the following which to me looks like a grid. If you have a...

@K3nn3th2 is your issue fixed, now ?

If you truly want to block the width in this way either pad the text in the columns that should be fix or enforce a constant width using the constraints....