mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Merge pull request #10800 from Pokechu22/registerwidget-crash
RegisterWidget: Fix crash when right-clicking when there is no selected cell
This commit is contained in:
commit
2a791116f1
1 changed files with 3 additions and 3 deletions
|
@ -114,11 +114,11 @@ void RegisterWidget::ShowContextMenu()
|
|||
{
|
||||
QMenu* menu = new QMenu(this);
|
||||
|
||||
auto variant = m_table->currentItem()->data(DATA_TYPE);
|
||||
auto* raw_item = m_table->currentItem();
|
||||
|
||||
if (!variant.isNull())
|
||||
if (raw_item != nullptr && !raw_item->data(DATA_TYPE).isNull())
|
||||
{
|
||||
auto* item = static_cast<RegisterColumn*>(m_table->currentItem());
|
||||
auto* item = static_cast<RegisterColumn*>(raw_item);
|
||||
auto type = static_cast<RegisterType>(item->data(DATA_TYPE).toInt());
|
||||
auto display = item->GetDisplay();
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue