We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6464c72 commit b09a112Copy full SHA for b09a112
src/logfile_sub_source.cc
@@ -3224,10 +3224,15 @@ logfile_sub_source::text_handle_mouse(
3224
mouse_event& me)
3225
{
3226
if (tc.get_overlay_selection()) {
3227
+ auto nci = ncinput{};
3228
if (me.is_click_in(mouse_button_t::BUTTON_LEFT, 2, 4)) {
- this->list_input_handle_key(tc, {' '});
3229
+ nci.id = ' ';
3230
+ nci.eff_text[0] = ' ';
3231
+ this->list_input_handle_key(tc, nci);
3232
} else if (me.is_click_in(mouse_button_t::BUTTON_LEFT, 5, 6)) {
- this->list_input_handle_key(tc, {'#'});
3233
+ nci.id = '#';
3234
+ nci.eff_text[0] = '#';
3235
3236
}
3237
3238
return true;
0 commit comments