1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Add character identifiers to focusable widgets

When no widget has focus, press the letter key to focus on the widget
assigned to that letter.

Example:

    GitHub (d)

    Press "d" to focus on the GitHub widget.
This commit is contained in:
Chris Cummer
2018-07-30 15:51:19 -07:00
parent 749318ead6
commit beb0c43b07
36 changed files with 100 additions and 44 deletions

View File

@@ -16,7 +16,7 @@ type Widget struct {
func NewWidget() *Widget {
widget := Widget{
TextWidget: wtf.NewTextWidget(" Jira ", "jira", true),
TextWidget: wtf.NewTextWidget("Jira", "jira", true),
}
widget.unselect()
@@ -54,13 +54,10 @@ func (widget *Widget) display() {
return
}
widget.View.SetWrap(false)
widget.View.SetTitle(
fmt.Sprintf(
"%s- [green]%s[white] ",
widget.Name,
wtf.Config.UString("wtf.mods.jira.project"),
),
)
str := fmt.Sprintf("%s- [green]%s[white]", widget.Name, wtf.Config.UString("wtf.mods.jira.project"))
widget.View.SetTitle(widget.ContextualTitle(str))
widget.View.SetText(fmt.Sprintf("%s", widget.contentFrom(widget.result)))
}