2
0
forked from Ivasoft/DSView

fix: The Up and Down key is disabled on windows 10

This commit is contained in:
dreamsourcelabTAI
2024-06-14 17:57:21 +08:00
parent 699743655a
commit 1c7f402f6a

View File

@@ -1336,6 +1336,9 @@ namespace pv
break;
case Qt::Key_Up:
#ifdef _WIN32
case 38:
#endif
for (auto s : sigs)
{
if (s->signal_type() == SR_CHANNEL_DSO){
@@ -1351,6 +1354,9 @@ namespace pv
break;
case Qt::Key_Down:
#ifdef _WIN32
case 40:
#endif
for (auto s : sigs)
{
if (s->signal_type() == SR_CHANNEL_DSO){