aboutsummaryrefslogtreecommitdiff
path: root/reselect
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2021-06-08 21:40:29 +0200
committerAnton Khirnov <anton@khirnov.net>2021-06-08 21:40:29 +0200
commit72664dd8a2e530e8ebbb0d8970a10d21810daa2d (patch)
tree511a0ce335cd4ec67bd5f6db6adc8a237f26db9f /reselect
parentaf7f320514c5de269efa4b593148a143b5548f8c (diff)
Use overlay rstyle for the overlay displaying typed text.
Diffstat (limited to 'reselect')
-rw-r--r--reselect2
1 files changed, 1 insertions, 1 deletions
diff --git a/reselect b/reselect
index 71a49f4..b6296d0 100644
--- a/reselect
+++ b/reselect
@@ -196,7 +196,7 @@ sub on_key_press {
sub update {
my ($self, $p) = @_;
$p->{typing} = $self->overlay($p->{prompt_len}, -1, length($p->{buffer}), 1,
- $self->get_rend("input", urxvt::DEFAULT_RSTYLE), 0);
+ $self->get_rend("input", urxvt::OVERLAY_RSTYLE), 0);
$p->{typing}->set(0,0,$p->{buffer});
my $results = $p->{results};