You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 30, 2022. It is now read-only.
BGHUDSliderCell doesn't draw a vertical slider correctly in the disabled state. I think this is just an oversight and easily fixed by applying the code from the horizontal variant:
BGHUDAppKit looks great. Thank you, Tim!
BGHUDSliderCell doesn't draw a vertical slider correctly in the disabled state. I think this is just an oversight and easily fixed by applying the code from the horizontal variant:
diff /Users/garethsb/Development/binarygod-BGHUDAppKit-79a560d/Framework/BGHUDSliderCell.m /Users/garethsb/Development/binarygod-BGHUDAppKit-79a560d-patched/Framework/BGHUDSliderCell.m 308,312c308,322 < [[[[BGThemeManager keyedManager] themeForKey: self.themeKey] sliderTrackColor] set]; < [path fill]; < < [[[[BGThemeManager keyedManager] themeForKey: self.themeKey] strokeColor] set]; < [path stroke]; --- > if([self isEnabled]) { > > [[[[BGThemeManager keyedManager] themeForKey: self.themeKey] sliderTrackColor] set]; > [path fill]; > > [[[[BGThemeManager keyedManager] themeForKey: self.themeKey] strokeColor] set]; > [path stroke]; > } else { > > [[[[BGThemeManager keyedManager] themeForKey: self.themeKey] disabledSliderTrackColor] set]; > [path fill]; > > [[[[BGThemeManager keyedManager] themeForKey: self.themeKey] disabledStrokeColor] set]; > [path stroke]; > }Thanks,
Gareth Sylvester-Bradley