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 d59e373 commit 9839246Copy full SHA for 9839246
src/dialog_search.ts
@@ -68,11 +68,7 @@ export class Search {
68
69
let text_changed: null | number = null;
70
71
- this.text.connect("activate", () => {
72
- if (text_changed !== null) GLib.source_remove(text_changed)
73
- text_changed = null
74
- this.activate_option(this.active_id)
75
- });
+ this.text.connect("activate", () => this.activate_option(this.active_id));
76
77
this.text.connect("text-changed", (entry: any) => {
78
if (text_changed !== null) GLib.source_remove(text_changed)
0 commit comments