Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flutter/lib/common/widgets/remote_input.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class RawKeyFocusScope extends StatelessWidget {
// https://github.com/flutter/flutter/issues/154053
final useRawKeyEvents = isLinux && !isWeb;
// FIXME: On Windows, `AltGr` will generate `Alt` and `Control` key events,
// while `Alt` and `Control` are seperated key events for en-US input method.
// while `Alt` and `Control` are separated key events for en-US input method.
return FocusScope(
autofocus: true,
child: Focus(
Expand Down
2 changes: 1 addition & 1 deletion libs/clipboard/src/platform/unix/fuse/cs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
//!
//! For now, we transfer all file names with windows separators, UTF-16 encoded.
//! *Need a way to transfer file names with '\' safely*.
//! Maybe we can use URL encoded file names and '/' seperators as a new standard, while keep the support to old schemes.
//! Maybe we can use URL encoded file names and '/' separators as a new standard, while keep the support to old schemes.
//!
//! # Note
//! - all files on FS should be read only, and mark the owner to be the current user
Expand Down
2 changes: 1 addition & 1 deletion libs/virtual_display/dylib/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ TODO

## X11

## OSX
## macOS
6 changes: 3 additions & 3 deletions src/ui/cm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ impl InvokeUiCM for SciterHandler {
self.call("newMessage", &make_args!(id, text));
}

fn change_theme(&self, _dark: String) {
// TODO
fn change_theme(&self, dark: String) {
self.call("changeTheme", &make_args!(dark));
}

fn change_language(&self) {
// TODO
self.call("changeLanguage", &make_args!());
}

fn show_elevation(&self, show: bool) {
Expand Down
Loading