We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af8f1ff commit 87ee37dCopy full SHA for 87ee37d
src/raddbg/raddbg_views.c
@@ -2884,7 +2884,7 @@ RD_VIEW_UI_FUNCTION_DEF(watch)
2884
}
2885
2886
// rjf: activation (double-click normally, or single-clicks with special buttons)
2887
- if(ui_double_clicked(sig) ||
+ if((!(cell_info.flags & RD_WatchCellFlag_ActivateWithSingleClick) && ui_double_clicked(sig)) ||
2888
((cell_info.flags & RD_WatchCellFlag_ActivateWithSingleClick) && ui_clicked(sig)))
2889
{
2890
// rjf: kill if a double-clickable cell
0 commit comments