diff --git a/client/components/Windows/Help.vue b/client/components/Windows/Help.vue index 95067dff..fd1408d6 100644 --- a/client/components/Windows/Help.vue +++ b/client/components/Windows/Help.vue @@ -87,6 +87,36 @@

+

Gestures

+ +
+
Single-Finger Swipe Left
+
+

Hide sidebar.

+
+
+ +
+
Single-Finger Swipe Right
+
+

Show sidebar.

+
+
+ +
+
Two-Finger Swipe Left
+
+

Switch to the next window in the channel list.

+
+
+ +
+
Two-Finger Swipe Right
+
+

Switch to the previous window in the channel list.

+
+
+

Keyboard Shortcuts

@@ -764,6 +794,7 @@ export default { data() { return { isApple: navigator.platform.match(/(Mac|iPhone|iPod|iPad)/i) || false, + isTouch: navigator.maxTouchPoints > 0, }; }, }; diff --git a/client/css/style.css b/client/css/style.css index 30bceaaa..44c4d3dd 100644 --- a/client/css/style.css +++ b/client/css/style.css @@ -2024,6 +2024,10 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */ padding-right: 15px; } +#help .help-item .subject.gesture { + font-weight: bold; +} + #help .help-item .description p { margin-bottom: 0; }