summaryrefslogtreecommitdiff
path: root/prefs.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2007-04-23 10:04:27 +0100
committerAndrew Dolgov <[email protected]>2007-04-23 10:04:27 +0100
commit4bbc659591e32e197c148e3aa68b9996255a330c (patch)
tree11f58a7c90bfa9d0f36a82d914d16bffb089d373 /prefs.js
parente12a547eb956881a5fe0f3a91be9f7172dfb3546 (diff)
correct PNGs in some pref callbacks
Diffstat (limited to 'prefs.js')
-rw-r--r--prefs.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/prefs.js b/prefs.js
index c8cb35589..ab8953bd4 100644
--- a/prefs.js
+++ b/prefs.js
@@ -42,7 +42,7 @@ function feedlist_callback() {
caller_subop = false;
}
-
+ correctPNG();
notify("");
} catch (e) {
exception_error("feedlist_callback", e);
@@ -54,6 +54,7 @@ function filterlist_callback() {
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
+ correctPNG();
notify("");
}
}
@@ -76,6 +77,7 @@ function labellist_callback() {
checkbox.checked = true;
}
}
+ correctPNG();
notify("");
}
}