mirror of https://github.com/PCSX2/pcsx2.git
pcsx2 gui: better fit string into textbox on linux
* increase a min panel size (skip when turbo string) * shorten ee cache string with a nice tooltip git-svn-id: http://pcsx2.googlecode.com/svn/trunk@4654 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
parent
372155ad05
commit
de826932e4
|
@ -151,7 +151,7 @@ Panels::CpuPanelEE::CpuPanelEE( wxWindow* parent )
|
|||
wxStaticBoxSizer& s_iop ( *new wxStaticBoxSizer( wxVERTICAL, this, L"IOP" ) );
|
||||
|
||||
s_ee += m_panel_RecEE | StdExpand();
|
||||
s_ee += m_check_EECacheEnable = new pxCheckBox( this, _("Enable EE Cache - Interpreter Only! (Slower)") );
|
||||
s_ee += m_check_EECacheEnable = &(new pxCheckBox( this, _("Enable EE Cache (Slower)") ))->SetToolTip(_("Interpreter only; provided for diagnostic"));
|
||||
s_iop += m_panel_RecIOP | StdExpand();
|
||||
|
||||
s_recs += s_ee | SubGroup();
|
||||
|
|
|
@ -172,7 +172,7 @@ void Panels::FramelimiterPanel::Apply()
|
|||
Panels::FrameSkipPanel::FrameSkipPanel( wxWindow* parent )
|
||||
: BaseApplicableConfigPanel_SpecificConfig( parent )
|
||||
{
|
||||
SetMinWidth( 280 );
|
||||
SetMinWidth( 350 );
|
||||
|
||||
const RadioPanelItem FrameskipOptions[] =
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue