mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-29 13:45:51 +00:00
Qt: Fix add button not releasing
This commit is contained in:
parent
e575fa92d7
commit
cd5f42cee0
4 changed files with 4 additions and 4 deletions
|
@ -143,7 +143,7 @@ QGroupBox* PathPane::MakeGameFolderBox()
|
|||
connect(auto_checkbox, &QCheckBox::toggled, &Settings::Instance(),
|
||||
&Settings::SetAutoRefreshEnabled);
|
||||
|
||||
connect(add, &QPushButton::pressed, this, &PathPane::Browse);
|
||||
connect(add, &QPushButton::clicked, this, &PathPane::Browse);
|
||||
connect(m_remove_path, &QPushButton::pressed, this, &PathPane::RemovePath);
|
||||
|
||||
game_box->setLayout(vlayout);
|
||||
|
|
|
@ -79,7 +79,7 @@ void WiiPane::ConnectLayout()
|
|||
|
||||
// Whitelisted USB Passthrough Devices
|
||||
connect(m_whitelist_usb_list, &QListWidget::itemClicked, this, &WiiPane::ValidateSelectionState);
|
||||
connect(m_whitelist_usb_add_button, &QPushButton::pressed, this,
|
||||
connect(m_whitelist_usb_add_button, &QPushButton::clicked, this,
|
||||
&WiiPane::OnUSBWhitelistAddButton);
|
||||
connect(m_whitelist_usb_remove_button, &QPushButton::pressed, this,
|
||||
&WiiPane::OnUSBWhitelistRemoveButton);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue