Fix composer selecting whole lines when trying to select a word.
* src/client/composer/composer-web-view.vala (ComposerWebView::button_release_event): Chain up to the correct parent method.
This commit is contained in:
parent
48d92fa67c
commit
3e36b5e961
1 changed files with 1 additions and 1 deletions
|
|
@ -494,7 +494,7 @@ public class ComposerWebView : ClientWebView {
|
|||
// WebView seems to unconditionally consume button events, so
|
||||
// to show a link popopver after the view has processed one,
|
||||
// we need to emit our own.
|
||||
bool ret = base.button_press_event(event);
|
||||
bool ret = base.button_release_event(event);
|
||||
button_release_event_done(event);
|
||||
return ret;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue