Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
gajim
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Weblate
gajim
Commits
4b0c3759
Commit
4b0c3759
authored
15 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
don't depend on PyGTK 2.16. Fixes #5472
parent
8b1e480e
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/profile_window.py
+3
-3
3 additions, 3 deletions
src/profile_window.py
with
3 additions
and
3 deletions
src/profile_window.py
+
3
−
3
View file @
4b0c3759
...
...
@@ -68,7 +68,7 @@ class ProfileWindow:
return
True
# loop forever
def
remove_statusbar
(
self
,
message_id
):
self
.
statusbar
.
remove
_message
(
self
.
context_id
,
message_id
)
self
.
statusbar
.
remove
(
self
.
context_id
,
message_id
)
self
.
remove_statusbar_timeout_id
=
None
def
on_profile_window_destroy
(
self
,
widget
):
...
...
@@ -246,7 +246,7 @@ class ProfileWindow:
self
.
set_value
(
i
+
'
_entry
'
,
vcard_
[
i
])
if
self
.
update_progressbar_timeout_id
is
not
None
:
if
self
.
message_id
:
self
.
statusbar
.
remove
_message
(
self
.
context_id
,
self
.
message_id
)
self
.
statusbar
.
remove
(
self
.
context_id
,
self
.
message_id
)
self
.
message_id
=
self
.
statusbar
.
push
(
self
.
context_id
,
_
(
'
Information received
'
))
self
.
remove_statusbar_timeout_id
=
gobject
.
timeout_add_seconds
(
3
,
...
...
@@ -342,7 +342,7 @@ class ProfileWindow:
def
vcard_not_published
(
self
):
if
self
.
message_id
:
self
.
statusbar
.
remove
_message
(
self
.
context_id
,
self
.
message_id
)
self
.
statusbar
.
remove
(
self
.
context_id
,
self
.
message_id
)
self
.
message_id
=
self
.
statusbar
.
push
(
self
.
context_id
,
_
(
'
Information NOT published
'
))
self
.
remove_statusbar_timeout_id
=
gobject
.
timeout_add_seconds
(
3
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment