summaryrefslogtreecommitdiff
path: root/feedlist.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2008-05-20 02:03:35 +0100
committerAndrew Dolgov <[email protected]>2008-05-20 02:03:35 +0100
commit43dbb07f112d6e4e5d55697c8f8db456df3e1d27 (patch)
tree2d29c52d90cfd44b4ec20b6a4862d073e7814aad /feedlist.js
parent91cdbe5235f1c23392893da5e81e4db8537b5f08 (diff)
store layout resize param in a cookie
Diffstat (limited to 'feedlist.js')
-rw-r--r--feedlist.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/feedlist.js b/feedlist.js
index 3618d9182..379fff300 100644
--- a/feedlist.js
+++ b/feedlist.js
@@ -481,7 +481,7 @@ function mouse_move_handler(e) {
}
- if (mouse_is_down && enable_resize) {
+ if (mouse_is_down) {
if (mouse_y == 0) mouse_y = client_y;
if (mouse_x == 0) mouse_x = client_x;
@@ -501,7 +501,7 @@ function resize_enabled(b) {
function mouse_down_handler(e) {
try {
- mouse_is_down = true;
+ if (enable_resize) mouse_is_down = true;
} catch (e) {
exception_error("mouse_move_handler", e);
}