mirror of https://github.com/PCSX2/pcsx2.git
Presets slider: added minimum size (there were complaints that it's barely visible in Linux).
If you happen to test it on linux, please let me know that the presets controls appear and are usable (checkbox, the word 'Preset', a slider that can be set to 6 positions, and a colored preset name) git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4277 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
cdc3be5067
commit
dd66d3ac5f
|
@ -129,6 +129,7 @@ void Dialogs::SysConfigDialog::AddPresetsControl()
|
||||||
{
|
{
|
||||||
m_slider_presets = new wxSlider( this, wxID_ANY, g_Conf->PresetIndex, 0, AppConfig::GetMaxPresetIndex(),
|
m_slider_presets = new wxSlider( this, wxID_ANY, g_Conf->PresetIndex, 0, AppConfig::GetMaxPresetIndex(),
|
||||||
wxDefaultPosition, wxDefaultSize, wxHORIZONTAL /*| wxSL_AUTOTICKS | wxSL_LABELS */);
|
wxDefaultPosition, wxDefaultSize, wxHORIZONTAL /*| wxSL_AUTOTICKS | wxSL_LABELS */);
|
||||||
|
m_slider_presets->SetMinSize(wxSize(100,25));
|
||||||
|
|
||||||
m_slider_presets->SetToolTip(
|
m_slider_presets->SetToolTip(
|
||||||
pxEt( "!Notice:Tooltip:Presets:Slider",
|
pxEt( "!Notice:Tooltip:Presets:Slider",
|
||||||
|
|
Loading…
Reference in New Issue