Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Custom shortcuts with fyne.KeyTab is not working #3087

Closed
Jacalz opened this issue Jun 21, 2022 · 2 comments · Fixed by #3629
Closed

Custom shortcuts with fyne.KeyTab is not working #3087

Jacalz opened this issue Jun 21, 2022 · 2 comments · Fixed by #3629
Labels
bug Something isn't working Driver:desktop Issues relating to the desktop driver specifically

Comments

@Jacalz
Copy link
Member

Jacalz commented Jun 21, 2022

Describe the bug:

I have noticed that using fyne.KeyTab doesn't work when using the desktop.CustomShortcut type. My idea is that something with our handling of tabs is treating the window canvas as not accepting tabs. Other buttons seem to be working fine on my end.

To Reproduce:

Steps to reproduce the behaviour:

  1. Run the example code below.
  2. Press Ctrl + Tab on keyboard.
  3. Notice that nothing happens.
  4. Press Ctrl + Space on keyboard.
  5. Notice that it works.

Example code:

package main

import (
	"fyne.io/fyne/v2"
	"fyne.io/fyne/v2/app"
	"fyne.io/fyne/v2/driver/desktop"
)

func main() {
	a := app.New()
	w := a.NewWindow("Custom Shortcut")

	ctrlTab := &desktop.CustomShortcut{KeyName: fyne.KeyTab, Modifier: fyne.KeyModifierControl}
	w.Canvas().AddShortcut(ctrlTab, func(shortcut fyne.Shortcut) {
		println("We tapped Ctrl+Tab")
	})

	ctrlSpace := &desktop.CustomShortcut{KeyName: fyne.KeySpace, Modifier: fyne.KeyModifierControl}
	w.Canvas().AddShortcut(ctrlSpace, func(shortcut fyne.Shortcut) {
		println("We tapped Ctrl+Space")
	})

	w.ShowAndRun()
}

Device (please complete the following information):

  • OS: Fedora Linux
  • Version: 35 with kernel 5.17.14
  • Go version: 1.16.15
  • Fyne version: 2.2.1
@Jacalz Jacalz added bug Something isn't working Driver:desktop Issues relating to the desktop driver specifically labels Jun 21, 2022
@Jacalz Jacalz added this to the Fixes (v2.2.x) milestone Jun 21, 2022
@edwinclement08
Copy link
Contributor

Facing the same Issue.

@Jacalz
Copy link
Member Author

Jacalz commented Feb 8, 2023

Fixed now on develop. Thanks @edwinclement08.

@Jacalz Jacalz closed this as completed Feb 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working Driver:desktop Issues relating to the desktop driver specifically
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants