summaryrefslogtreecommitdiff
path: root/lib/widgets.cc
diff options
context:
space:
mode:
authorpixel <pixel>2004-07-13 06:20:33 +0000
committerpixel <pixel>2004-07-13 06:20:33 +0000
commit652aa99bd5fddbb4ee878ddd65ac637a134dbcbc (patch)
tree84c0c8f8bbb943a570d4e6d245f7410633c0fb42 /lib/widgets.cc
parentbaac659433417ee555e3e04a28ea6c06fa23d588 (diff)
Fixed font bug + adding fixed font
Diffstat (limited to 'lib/widgets.cc')
-rw-r--r--lib/widgets.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/widgets.cc b/lib/widgets.cc
index 5676721..f3dc559 100644
--- a/lib/widgets.cc
+++ b/lib/widgets.cc
@@ -372,10 +372,10 @@ bool mogltk::widgets::Button::process_event(int xe, int ye, mogltk::event_t even
return true;
case E_MOUSE_END_DRAG_OVER:
dragging = false;
- if (bevel);
+ if (bevel)
// action here.
- if (a)
- a->do_action(this);
+ if (a)
+ a->do_action(this);
bevel = false;
return true;
}