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
98cc0d5a
Commit
98cc0d5a
authored
Apr 21, 2022
by
Tijmen de Mes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Syntax fixes
parent
466278c1
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
4 additions
and
8 deletions
+4
-8
__init__.py
blink/__init__.py
+0
-1
chatwindow.py
blink/chatwindow.py
+0
-2
account.py
blink/configuration/account.py
+0
-1
history.py
blink/history.py
+3
-3
mainwindow.py
blink/mainwindow.py
+1
-0
preferences.py
blink/preferences.py
+0
-1
No files found.
blink/__init__.py
View file @
98cc0d5a
...
...
@@ -214,4 +214,3 @@ class Blink(QApplication, metaclass=QSingleton):
log
.
error
(
'Fatal error:
\n
{}'
.
format
(
notification
.
data
.
traceback
))
QMessageBox
.
critical
(
self
.
main_window
,
"Fatal Error"
,
"A fatal error occurred, {} will now exit."
.
format
(
self
.
applicationName
()))
sys
.
exit
(
1
)
blink/chatwindow.py
View file @
98cc0d5a
...
...
@@ -2641,5 +2641,3 @@ class VideoScreenshot(object):
filename
=
next
(
filename
for
filename
in
self
.
filename_generator
()
if
not
os
.
path
.
exists
(
filename
))
makedirs
(
os
.
path
.
dirname
(
filename
))
self
.
image
.
save
(
filename
)
blink/configuration/account.py
View file @
98cc0d5a
...
...
@@ -65,7 +65,6 @@ class SoundSettings(SettingsGroup):
inbound_ringtone
=
Setting
(
type
=
SoundFile
,
default
=
None
,
nillable
=
True
)
class
XCAPSettingsExtension
(
XCAPSettings
):
enabled
=
Setting
(
type
=
bool
,
default
=
True
)
icon
=
RuntimeSetting
(
type
=
IconDescriptor
,
nillable
=
True
,
default
=
None
)
...
...
blink/history.py
View file @
98cc0d5a
blink/mainwindow.py
View file @
98cc0d5a
...
...
@@ -930,6 +930,7 @@ class MainWindow(base_class, ui_class):
self
.
pending_watcher_dialogs
.
append
(
dialog
)
dialog
.
show
()
def
_NH_BlinkSessionNewOutgoing
(
self
,
notification
):
self
.
search_box
.
clear
()
...
...
blink/preferences.py
View file @
98cc0d5a
...
...
@@ -459,7 +459,6 @@ class PreferencesWindow(base_class, ui_class, metaclass=QSingleton):
self
.
idd_prefix_label
.
setMinimumWidth
(
text_width
)
self
.
tls_cert_file_label
.
setMinimumWidth
(
text_width
)
# audio settings
font_metrics
=
self
.
answer_delay_label
.
fontMetrics
()
# we assume all labels have the same font
labels
=
(
self
.
audio_input_device_label
,
self
.
audio_output_device_label
,
self
.
audio_alert_device_label
,
self
.
audio_sample_rate_label
,
...
...
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