-
Notifications
You must be signed in to change notification settings - Fork 5.2k
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
feat(keyboards): add shortcuts for scrolling chat #28294
base: dev
Are you sure you want to change the base?
Conversation
There seem to be spacing problems looking at the diff with GitHub UI... |
@@ -36,6 +36,12 @@ const auto AutoRepeatCommands = base::flat_set<Command>{ | |||
Command::ChatNext, | |||
Command::ChatFirst, | |||
Command::ChatLast, | |||
Command::ChatScrollDown, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
align
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
@@ -22,6 +22,15 @@ enum class Command { | |||
MediaPrevious, | |||
MediaNext, | |||
|
|||
ChatScrollDown, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
align
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
history_widget.cpp is still not fixed... |
done |
Maybe I missed something. Are there an |
no |
Can you squash the commits? |
done |
@@ -73,6 +79,14 @@ const auto CommandByName = base::flat_map<QString, Command>{ | |||
{ u"previous_chat"_q , Command::ChatPrevious }, | |||
{ u"next_chat"_q , Command::ChatNext }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is well to do.
#16300