Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SOHViewer
Manage
Activity
Members
Labels
Plan
Issues
14
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
5
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software Public
PASSOFT
SOHViewer
Merge requests
!248
I221 rt130 soh message highlight on wrong line
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
I221 rt130 soh message highlight on wrong line
i221-rt130-soh-message-highlight-wrong-line
into
master
Overview
0
Commits
3
Pipelines
4
Changes
1
Merged
Lan Dam
requested to merge
i221-rt130-soh-message-highlight-wrong-line
into
master
1 year ago
Overview
0
Commits
3
Pipelines
4
Changes
41
Expand
closes
#221 (closed)
👍
0
👎
0
Merge request reports
Viewing commit
8c47e1bb
Prev
Next
Show latest version
41 files
+
624
−
509
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
41
Search (e.g. *.vue) (Ctrl+P)
8c47e1bb
Merge branch 'master' into i221-rt130-soh-message-highlight-wrong-line
· 8c47e1bb
Lan Dam
authored
1 year ago
sohstationviewer/view/search_message/search_message_dialog.py
+
2
−
2
Options
@@ -529,10 +529,10 @@ class SearchMessageDialog(QtWidgets.QWidget):
)
# select all rows according to log_indexes
for
idx
in
log_indexes
:
self
.
current_table
.
selectRow
(
idx
)
self
.
current_table
.
selectRow
(
idx
+
1
)
# scroll to the first index and place the row at top of the table
self
.
current_table
.
scrollToItem
(
self
.
current_table
.
item
(
log_indexes
[
0
],
1
),
self
.
current_table
.
item
(
log_indexes
[
0
]
+
1
,
1
),
QAbstractItemView
.
ScrollHint
.
PositionAtTop
)
# raise the message dialog on top of others
Loading