Skip to content

Commit 38bf8bd

Browse files
committed
Working shortcuts on Linux/windows/macos
1 parent a526e1d commit 38bf8bd

13 files changed

+852
-670
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ If you want more in-depth information about go-flutter, read the [wiki](https://
5252
- <kbd>Backspace</kbd> <kbd>ctrl-Backspace</kbd> <kbd>Delete</kbd>
5353
- Mouse-over/hovering
5454
- Mouse-buttons
55-
- RawKeyboard events (through `RawKeyEventDataLinux` regardless of the platform)
55+
- RawKeyboard events
5656
- Distribution format (windows-msi, mac-dmg, linux-appimage, and more)
5757
- Cross-compiling using docker :whale:
5858

application.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,6 @@ func (a *Application) Run() error {
229229
// Attach PlatformMessage callback functions onto the engine
230230
a.engine.PlatfromMessage = messenger.handlePlatformMessage
231231

232-
// Not very nice, but we can only really fix this when there's a pluggable
233-
// renderer.
234-
defaultTextinputPlugin.keyboardLayout = a.config.keyboardLayout
235-
236232
// Set the glfw window user pointer to point to the FlutterEngine so that
237233
// callback functions may obtain the FlutterEngine from the glfw window
238234
// user pointer.

embedder/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ To build this package set the `CGO_LDFLAGS` and run `go build`. For example:
88

99
On Linux:
1010
```bash
11-
export CGO_LDFLAGS="-L/home/${HOME}/.cache/hover/engine/linux/"
11+
export CGO_LDFLAGS="-L${HOME}/.cache/hover/engine/linux/"
1212
go build
1313
```
1414

0 commit comments

Comments
 (0)