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
a0fcd5cd
Commit
a0fcd5cd
authored
Jun 07, 2023
by
Tijmen de Mes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed python >= 3.10 warnings
parent
aa2432b2
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
6 deletions
+6
-6
chatwindow.py
blink/chatwindow.py
+1
-1
sessions.py
blink/sessions.py
+5
-5
No files found.
blink/chatwindow.py
View file @
a0fcd5cd
...
...
@@ -2174,7 +2174,7 @@ class ChatWindow(base_class, ui_class, ColorHelperMixin):
self
.
_EH_ShowSessions
()
elif
watched
is
self
.
state_label
:
if
event_type
==
QEvent
.
MouseButtonRelease
and
event
.
button
()
==
Qt
.
LeftButton
and
event
.
modifiers
()
==
Qt
.
NoModifier
:
upper_half
=
QRect
(
0
,
0
,
int
(
self
.
state_label
.
width
()),
int
(
self
.
state_label
.
height
()
/
2
))
upper_half
=
QRect
(
0
,
0
,
int
(
self
.
state_label
.
width
()),
int
(
self
.
state_label
.
height
()
/
2
))
if
upper_half
.
contains
(
event
.
pos
()):
self
.
_EH_CloseSession
()
else
:
...
...
blink/sessions.py
View file @
a0fcd5cd
...
...
@@ -4819,7 +4819,7 @@ class ConferenceParticipantDelegate(QStyledItemDelegate, ColorHelperMixin):
def
editorEvent
(
self
,
event
,
model
,
option
,
index
):
if
event
.
type
()
==
QEvent
.
MouseButtonRelease
and
event
.
button
()
==
Qt
.
LeftButton
and
event
.
modifiers
()
==
Qt
.
NoModifier
:
cross_rect
=
option
.
rect
.
adjusted
(
option
.
rect
.
width
()
-
14
,
0
,
0
,
-
option
.
rect
.
height
()
/
2
)
# top half of the rightmost 14 pixels
cross_rect
=
option
.
rect
.
adjusted
(
int
(
option
.
rect
.
width
())
-
14
,
0
,
0
,
int
(
-
option
.
rect
.
height
()
/
2
)
)
# top half of the rightmost 14 pixels
if
cross_rect
.
contains
(
event
.
pos
()):
item
=
index
.
data
(
Qt
.
UserRole
)
model
.
session
.
server_conference
.
remove_participant
(
item
.
participant
)
...
...
@@ -4882,12 +4882,12 @@ class ConferenceParticipantDelegate(QStyledItemDelegate, ColorHelperMixin):
painter
.
translate
(
+
1.5
,
+
1
)
painter
.
translate
(
0
,
+
1
)
painter
.
setPen
(
contrast_pen
)
painter
.
drawLine
(
-
3
.5
,
-
3.5
,
3.5
,
3.5
)
painter
.
drawLine
(
-
3
.5
,
3.5
,
3.5
,
-
3.5
)
painter
.
drawLine
(
-
3
,
-
3
,
3
,
3
)
painter
.
drawLine
(
-
3
,
3
,
3
,
-
3
)
painter
.
translate
(
0
,
-
1
)
painter
.
setPen
(
pen
)
painter
.
drawLine
(
-
3
.5
,
-
3.5
,
3.5
,
3.5
)
painter
.
drawLine
(
-
3
.5
,
3.5
,
3.5
,
-
3.5
)
painter
.
drawLine
(
-
3
,
-
3
,
3
,
3
)
painter
.
drawLine
(
-
3
,
3
,
3
,
-
3
)
painter
.
restore
()
def
sizeHint
(
self
,
option
,
index
):
...
...
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