summaryrefslogtreecommitdiff
path: root/riscos/hotlist.c
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-10-04 23:54:42 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-10-04 23:54:42 +0000
commit403f12872d55a71b04287ed828be0c63be19e856 (patch)
tree190dbf327b98bb49831dc609f6c13bd828ded377 /riscos/hotlist.c
parent7144ce65ebbc7b1cb77d1f6b678a6d2b3c6547d1 (diff)
downloadnetsurf-403f12872d55a71b04287ed828be0c63be19e856.tar.gz
netsurf-403f12872d55a71b04287ed828be0c63be19e856.tar.bz2
[project @ 2004-10-04 23:54:42 by rjw]
Moved GIF file reading to image/, optimisation of plotting for GIFs, JNGs, PNGs and JPEGs, initial work for toolbar customisation. Possibly some other things too. svn path=/import/netsurf/; revision=1301
Diffstat (limited to 'riscos/hotlist.c')
-rw-r--r--riscos/hotlist.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/riscos/hotlist.c b/riscos/hotlist.c
index 3b787a536..f7ed7516b 100644
--- a/riscos/hotlist.c
+++ b/riscos/hotlist.c
@@ -2296,9 +2296,17 @@ bool ro_gui_hotlist_keypress(int key) {
void ro_gui_hotlist_toolbar_click(wimp_pointer* pointer) {
int selection;
- /* Reject Menu clicks
+ /* Store the toolbar
*/
- if (pointer->buttons == wimp_CLICK_MENU) return;
+ current_toolbar = hotlist_toolbar;
+
+ /* Handle Menu clicks
+ */
+ if (pointer->buttons == wimp_CLICK_MENU) {
+ ro_gui_create_menu(toolbar_menu, pointer->pos.x,
+ pointer->pos.y, NULL);
+ return;
+ }
/* Handle the buttons appropriately
*/