mirror of https://github.com/PCSX2/pcsx2.git
gui: Don't set min widths for Framelimiter/skip panels
It causes weird behaviour at higher DPIs.
This commit is contained in:
parent
5e9ba64db8
commit
1d2d8cd38b
|
@ -29,8 +29,6 @@ using namespace pxSizerFlags;
|
|||
Panels::FramelimiterPanel::FramelimiterPanel( wxWindow* parent )
|
||||
: BaseApplicableConfigPanel_SpecificConfig( parent )
|
||||
{
|
||||
SetMinWidth( 280 );
|
||||
|
||||
m_check_LimiterDisable = new pxCheckBox( this, _("Disable Framelimiting"),
|
||||
_("Useful for running benchmarks. Toggle this option in-game by pressing F4.") );
|
||||
|
||||
|
@ -169,8 +167,6 @@ void Panels::FramelimiterPanel::Apply()
|
|||
Panels::FrameSkipPanel::FrameSkipPanel( wxWindow* parent )
|
||||
: BaseApplicableConfigPanel_SpecificConfig( parent )
|
||||
{
|
||||
SetMinWidth( 350 );
|
||||
|
||||
const RadioPanelItem FrameskipOptions[] =
|
||||
{
|
||||
RadioPanelItem(
|
||||
|
|
Loading…
Reference in New Issue