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
Package Registry
Model registry
Operate
Environments
Terraform modules
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
TSRh
gajim
Commits
c158ffe2
Commit
c158ffe2
authored
19 years ago
by
Yann Leboulanger
Browse files
Options
Downloads
Patches
Plain Diff
don't autoconnect signal on a widget than can be hidden (loh_history_checkbutton in vcard window)
parent
5cf91417
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/gtkgui.glade
+0
-1
0 additions, 1 deletion
src/gtkgui.glade
src/vcard.py
+5
-2
5 additions, 2 deletions
src/vcard.py
with
5 additions
and
3 deletions
src/gtkgui.glade
+
0
−
1
View file @
c158ffe2
...
...
@@ -6769,7 +6769,6 @@ Custom</property>
<property name="active">True</property>
<property name="inconsistent">False</property>
<property name="draw_indicator">True</property>
<signal name="toggled" handler="on_log_history_checkbutton_toggled" last_modification_time="Wed, 07 Dec 2005 14:24:05 GMT"/>
</widget>
<packing>
<property name="left_attach">0</property>
...
...
This diff is collapsed.
Click to expand it.
src/vcard.py
+
5
−
2
View file @
c158ffe2
...
...
@@ -101,7 +101,7 @@ def __init__(self, contact, account, vcard = False):
self
.
xml
.
signal_autoconnect
(
self
)
self
.
window
.
show_all
()
def
on_vcard_information_window_destroy
(
self
,
widget
=
None
):
def
on_vcard_information_window_destroy
(
self
,
widget
):
del
gajim
.
interface
.
instances
[
self
.
account
][
'
infos
'
][
self
.
jid
]
def
on_vcard_information_window_key_press_event
(
self
,
widget
,
event
):
...
...
@@ -304,7 +304,10 @@ def fill_jabber_page(self):
if
self
.
contact
.
jid
in
gajim
.
config
.
get_per
(
'
accounts
'
,
self
.
account
,
'
no_log_for
'
).
split
(
'
'
):
log
=
False
self
.
xml
.
get_widget
(
'
log_history_checkbutton
'
).
set_active
(
log
)
checkbutton
=
self
.
xml
.
get_widget
(
'
log_history_checkbutton
'
)
checkbutton
.
set_active
(
log
)
checkbutton
.
connect
(
'
toggled
'
,
self
.
on_log_history_checkbutton_toggled
)
resources
=
'
%s (%s)
'
%
(
self
.
contact
.
resource
,
unicode
(
self
.
contact
.
priority
))
uf_resources
=
self
.
contact
.
resource
+
_
(
'
resource with priority
'
)
\
...
...
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