Skip to content

Commit

Permalink
Config panel double-click time reduced to 500ms (#1316)
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed May 10, 2024
1 parent f5bea0a commit de20d00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/osdep/gui/PanelConfig.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class ConfigsListActionListener : public gcn::ActionListener
//-----------------------------------------------
// Double click on selected config -> Load it and start emulation
// ----------------------------------------------
if (current_time - last_click_time < 1000)
if (current_time - last_click_time <= 500)
{
if (emulating)
{
Expand Down

0 comments on commit de20d00

Please sign in to comment.