Skip to content
This repository has been archived by the owner on Nov 1, 2021. It is now read-only.

Support input method and text input #1203

Merged
merged 4 commits into from Oct 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
400 changes: 400 additions & 0 deletions examples/input-method.c

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions examples/meson.build
Expand Up @@ -94,6 +94,14 @@ examples = {
'src': 'toplevel-decoration.c',
'dep': [wayland_client, wlr_protos, wlroots],
},
'input-method': {
'src': 'input-method.c',
'dep': [wayland_client, wlr_protos, wlroots],
},
'text-input': {
'src': 'text-input.c',
'dep': [wayland_cursor, wayland_client, wlr_protos, wlroots],
},
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You're adding both in the same commi alhough one should be in text-input and the other one in input-method.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should be fixed now.

}

foreach name, info : examples
Expand Down