Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Archive
Alchemy Viewer
Commits
95ff29ff
Commit
95ff29ff
authored
5 years ago
by
Testicular Slingshot
Browse files
Options
Downloads
Patches
Plain Diff
Fix for chatbar cursor not going to the end of the line when typing a message to open the chatbar.
parent
40cd7eae
No related branches found
No related tags found
1 merge request
!13
Chatbar fixes
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llchatbar.cpp
+2
-1
2 additions, 1 deletion
indra/newview/llchatbar.cpp
with
2 additions
and
1 deletion
indra/newview/llchatbar.cpp
+
2
−
1
View file @
95ff29ff
...
@@ -47,7 +47,7 @@
...
@@ -47,7 +47,7 @@
using
namespace
LLChatUtilities
;
using
namespace
LLChatUtilities
;
class
LLChatBarGestureObserver
:
public
LLGestureManagerObserver
class
LLChatBarGestureObserver
final
:
public
LLGestureManagerObserver
{
{
public:
public:
LLChatBarGestureObserver
(
LLChatBar
*
chat_barp
)
:
mChatBar
(
chat_barp
){}
LLChatBarGestureObserver
(
LLChatBar
*
chat_barp
)
:
mChatBar
(
chat_barp
){}
...
@@ -294,6 +294,7 @@ void LLChatBar::startChat(const char* line)
...
@@ -294,6 +294,7 @@ void LLChatBar::startChat(const char* line)
std
::
string
line_string
(
line
);
std
::
string
line_string
(
line
);
bar
->
mInputEditor
->
setText
(
line_string
);
bar
->
mInputEditor
->
setText
(
line_string
);
}
}
bar
->
mInputEditor
->
setCursorToEnd
();
}
}
// static
// static
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment