Julien

Results 22 issues of Julien

Is it possible to tell which language is in use from javascript? I'm trying to localize the weather widget "Ripples", unfortunately `window.navigator.language` doesn't work. Thanks

bug

I'm trying to understand where in the code I should try to rewrite the spacing/sizing definition in order to get a more natural spaces. With current code, this is what...

with the option toggled on: ![image](https://user-images.githubusercontent.com/182520/98519294-ddee5e00-2270-11eb-88c2-41e82ff9e030.png) without: ![image](https://user-images.githubusercontent.com/182520/98519395-024a3a80-2271-11eb-80be-31240df344ef.png)

https://github.com/randrew/phantomstyle/blob/6e9580b72e372b5acecd616434eaf441bf73bcf4/src/phantom/phantomstyle.cpp#L4731-L4738 According to the doc `QStyle::PM_ExclusiveIndicatorHeight 40` is Height of a radio button indicator. Shouldn't you use `QStyle::PM_IndicatorHeight 38`: Height of a checkbox indicator.

https://github.com/randrew/phantomstyle/blob/6e9580b72e372b5acecd616434eaf441bf73bcf4/src/phantom/phantomstyle.cpp#L3916-L3925 `g0` is adjusted but not used, did you plan to call ```c++ Ph::paintBorderedRoundRect(painter, g0, Ph::SliderGroove_Rounding, swatch, outlineColor, gutterColor); ```

I feel like some outlines would looks much better if they were light when the base color is dark. For instance QLineEdit and QSpinBox outlines. On most dark interfaces (for...

https://github.com/randrew/phantomstyle/blob/6e9580b72e372b5acecd616434eaf441bf73bcf4/src/phantom/phantomstyle.cpp#L1646-L1655 Regarding the TODO, do you mean you would like the `else` to be coded like the first branch of the `if`, like this? ```c++ case PE_IndicatorToolBarSeparator: { QRect r...