prateekmedia / budgie-clipboard-applet

A clipboard manager applet that can help you to store and manage clipboard content. Made with ♥️ for budgie desktop.
GNU General Public License v3.0
17 stars 5 forks source link

Suggestion: Autosearch #10

Closed fossfreedom closed 3 years ago

fossfreedom commented 3 years ago

testing v0.8

Can I suggest that the clipboard automatically filters after you type two or three characters? - this will speed up finding and selecting stuff.

prateekmedia commented 3 years ago

Yeah, but Gtk.Entry doesnt support something like that , it only have activate signal which is activated when you press enter.

If you know any other widget or other things related to code this then I can implement it.

fossfreedom commented 3 years ago

changed is an inherited signal which you can use - see https://github.com/UbuntuBudgie/budgie-extras/blob/master/budgie-weathershow/src/weathershow/WeatherShow.vala#L826 and the connected method later in the same module

prateekmedia commented 3 years ago

changed is an inherited signal which you can use - see https://github.com/UbuntuBudgie/budgie-extras/blob/master/budgie-weathershow/src/weathershow/WeatherShow.vala#L826 and the connected method later in the same module

Thanks, will use that to search instead

prateekmedia commented 3 years ago

Thanks