Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vmj-qt
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
vmj-qt
Commits
28abd6ad
Commit
28abd6ad
authored
Apr 22, 2022
by
Adrian Georgescu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Swap expand/contract info panel arrow direction
parent
45fa9dbe
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
chatwindow.py
blink/chatwindow.py
+2
-2
sessions.py
blink/sessions.py
+2
-2
No files found.
blink/chatwindow.py
View file @
28abd6ad
...
@@ -2108,8 +2108,8 @@ class ChatWindow(base_class, ui_class, ColorHelperMixin):
...
@@ -2108,8 +2108,8 @@ class ChatWindow(base_class, ui_class, ColorHelperMixin):
arrow_rect
=
QRect
(
0
,
0
,
14
,
14
)
arrow_rect
=
QRect
(
0
,
0
,
14
,
14
)
arrow_rect
.
moveBottomRight
(
rect
.
bottomRight
())
arrow_rect
.
moveBottomRight
(
rect
.
bottomRight
())
arrow
=
QPolygonF
([
QPointF
(
-
3
,
-
1.5
),
QPointF
(
0.5
,
2.5
),
QPointF
(
4
,
-
1.5
)])
arrow
=
QPolygonF
([
QPointF
(
3
,
1.5
),
QPointF
(
-
0.5
,
-
2.5
),
QPointF
(
-
4
,
1.5
)])
arrow
.
translate
(
1
,
1
)
arrow
.
translate
(
2
,
1
)
painter
.
save
()
painter
.
save
()
painter
.
setRenderHint
(
QPainter
.
Antialiasing
,
True
)
painter
.
setRenderHint
(
QPainter
.
Antialiasing
,
True
)
...
...
blink/sessions.py
View file @
28abd6ad
...
@@ -3323,8 +3323,8 @@ class ChatSessionDelegate(QStyledItemDelegate, ColorHelperMixin):
...
@@ -3323,8 +3323,8 @@ class ChatSessionDelegate(QStyledItemDelegate, ColorHelperMixin):
arrow_rect
.
moveBottomRight
(
widget
.
state_label
.
geometry
()
.
bottomRight
())
arrow_rect
.
moveBottomRight
(
widget
.
state_label
.
geometry
()
.
bottomRight
())
arrow_rect
.
translate
(
option
.
rect
.
topLeft
())
arrow_rect
.
translate
(
option
.
rect
.
topLeft
())
arrow
=
QPolygonF
([
QPointF
(
3
,
1.5
),
QPointF
(
-
0.5
,
-
2.5
),
QPointF
(
-
4
,
1.5
)])
arrow
=
QPolygonF
([
QPointF
(
-
3
,
-
1.5
),
QPointF
(
0.5
,
2.5
),
QPointF
(
4
,
-
1.5
)])
arrow
.
translate
(
2
,
1
)
arrow
.
translate
(
1
,
1
)
painter
.
save
()
painter
.
save
()
painter
.
setRenderHint
(
QPainter
.
Antialiasing
,
True
)
painter
.
setRenderHint
(
QPainter
.
Antialiasing
,
True
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment