MCPcopy Index your code
hub / github.com/PySimpleGUI/PySimpleGUI / theme_slider_color

Function theme_slider_color

PySimpleGUI/PySimpleGUI.py:19807–19816  ·  view source on GitHub ↗

Sets/Returns the slider color (used for sliders) :return: color string of the slider color currently in use :rtype: (str)

(color=None)

Source from the content-addressed store, hash-verified

19805
19806
19807def theme_slider_color(color=None):
19808 """
19809 Sets/Returns the slider color (used for sliders)
19810
19811 :return: color string of the slider color currently in use
19812 :rtype: (str)
19813 """
19814 if color is not None:
19815 set_options(scrollbar_color=color)
19816 return DEFAULT_SCROLLBAR_COLOR
19817
19818
19819def theme_border_width(border_width=None):

Callers

nothing calls this directly

Calls 1

set_optionsFunction · 0.85

Tested by

no test coverage detected