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
55710a84
Commit
55710a84
authored
Jul 10, 2023
by
Tijmen de Mes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed displaying files in conferences
parent
f5cd2241
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sessions.py
blink/sessions.py
+2
-2
No files found.
blink/sessions.py
View file @
55710a84
...
@@ -4974,7 +4974,7 @@ class FileListItemWidget(base_class, ui_class):
...
@@ -4974,7 +4974,7 @@ class FileListItemWidget(base_class, ui_class):
self
.
filesize_label
.
setText
(
'
%
s'
%
FileSizeFormatter
.
format
(
item
.
size
))
self
.
filesize_label
.
setText
(
'
%
s'
%
FileSizeFormatter
.
format
(
item
.
size
))
if
item
.
encrypted
:
if
item
.
encrypted
:
self
.
state_indicator
.
setPixmap
(
self
.
pixmaps
.
encrypted_transfer
)
self
.
state_indicator
.
setPixmap
(
self
.
pixmaps
.
encrypted_transfer
)
if
item
.
until
is
not
None
:
if
item
.
until
is
not
None
and
not
item
.
in_conference
:
if
item
.
expired
:
if
item
.
expired
:
self
.
status_label
.
setText
(
translate
(
'chat_window'
,
"Expired:
%
s"
%
item
.
until
.
strftime
(
'
%
d
%
b
%
Y
%
H:
%
M'
)))
self
.
status_label
.
setText
(
translate
(
'chat_window'
,
"Expired:
%
s"
%
item
.
until
.
strftime
(
'
%
d
%
b
%
Y
%
H:
%
M'
)))
self
.
setToolTip
(
translate
(
'chat_window'
,
"Item still available in cache or local"
))
self
.
setToolTip
(
translate
(
'chat_window'
,
"Item still available in cache or local"
))
...
@@ -5154,7 +5154,7 @@ class FileListModel(QAbstractListModel):
...
@@ -5154,7 +5154,7 @@ class FileListModel(QAbstractListModel):
return
return
if
self
.
session
.
remote_focus
:
if
self
.
session
.
remote_focus
:
self
.
addItem
(
FileListItem
(
notification
.
data
.
fi
i
le
,
direction
=
notification
.
data
.
direction
,
conference_file
=
True
))
self
.
addItem
(
FileListItem
(
notification
.
data
.
file
,
direction
=
notification
.
data
.
direction
,
conference_file
=
True
))
return
return
self
.
addItem
(
FileListItem
(
notification
.
data
.
file
,
direction
=
notification
.
data
.
direction
))
self
.
addItem
(
FileListItem
(
notification
.
data
.
file
,
direction
=
notification
.
data
.
direction
))
...
...
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