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
27d17a20
Commit
27d17a20
authored
Apr 22, 2022
by
Tijmen de Mes
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Load message manager on application start
parent
b5d57429
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
0 deletions
+2
-0
mainwindow.py
blink/mainwindow.py
+2
-0
No files found.
blink/mainwindow.py
View file @
27d17a20
...
@@ -24,6 +24,7 @@ from blink.accounts import AccountModel, ActiveAccountModel, ServerToolsAccountM
...
@@ -24,6 +24,7 @@ from blink.accounts import AccountModel, ActiveAccountModel, ServerToolsAccountM
from
blink.contacts
import
Contact
,
ContactEditorDialog
,
ContactModel
,
ContactSearchModel
,
URIUtils
from
blink.contacts
import
Contact
,
ContactEditorDialog
,
ContactModel
,
ContactSearchModel
,
URIUtils
from
blink.filetransferwindow
import
FileTransferWindow
from
blink.filetransferwindow
import
FileTransferWindow
from
blink.history
import
HistoryManager
from
blink.history
import
HistoryManager
from
blink.messages
import
MessageManager
from
blink.preferences
import
PreferencesWindow
from
blink.preferences
import
PreferencesWindow
from
blink.sessions
import
ConferenceDialog
,
SessionManager
,
AudioSessionModel
,
StreamDescription
from
blink.sessions
import
ConferenceDialog
,
SessionManager
,
AudioSessionModel
,
StreamDescription
from
blink.configuration.datatypes
import
IconDescriptor
,
FileURL
,
PresenceState
from
blink.configuration.datatypes
import
IconDescriptor
,
FileURL
,
PresenceState
...
@@ -797,6 +798,7 @@ class MainWindow(base_class, ui_class):
...
@@ -797,6 +798,7 @@ class MainWindow(base_class, ui_class):
self
.
account_state
.
history
=
[(
item
.
state
,
item
.
note
)
for
item
in
blink_settings
.
presence
.
state_history
]
self
.
account_state
.
history
=
[(
item
.
state
,
item
.
note
)
for
item
in
blink_settings
.
presence
.
state_history
]
state
=
getattr
(
AccountState
,
blink_settings
.
presence
.
current_state
.
state
,
AccountState
.
Available
)
state
=
getattr
(
AccountState
,
blink_settings
.
presence
.
current_state
.
state
,
AccountState
.
Available
)
self
.
account_state
.
setState
(
state
,
blink_settings
.
presence
.
current_state
.
note
)
self
.
account_state
.
setState
(
state
,
blink_settings
.
presence
.
current_state
.
note
)
MessageManager
()
def
_NH_AudioDevicesDidChange
(
self
,
notification
):
def
_NH_AudioDevicesDidChange
(
self
,
notification
):
self
.
output_device_menu
.
clear
()
# because actions are owned by the menu and only referenced by their corresponding action groups,
self
.
output_device_menu
.
clear
()
# because actions are owned by the menu and only referenced by their corresponding action groups,
...
...
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