Mercurial > dillo_port1.3
changeset 1173:717058f63429
Removed the experimental font size adjuster patch (it slipped in by mistake)
author | Jorge Arellano Cid <jcid@dillo.org> |
---|---|
date | Mon, 15 Jun 2009 17:50:10 -0400 |
parents | d37ef22b590c |
children | cc02358c8e6d |
files | src/menu.cc |
diffstat | 1 files changed, 0 insertions(+), 19 deletions(-) [+] |
line wrap: on
line diff
--- a/src/menu.cc Mon Jun 15 18:17:58 2009 +0000 +++ b/src/menu.cc Mon Jun 15 17:50:10 2009 -0400 @@ -690,20 +690,6 @@ } } -static void Menu_fontsize_inc_cb(Widget *wid) -{ - MSG("Menu_fontsize_inc_cb\n"); - prefs.font_factor += 0.2; - a_UIcmd_repush(popup_bw); -} - -static void Menu_fontsize_dec_cb(Widget *wid) -{ - MSG("Menu_fontsize_dec_cb\n"); - prefs.font_factor -= 0.2; - a_UIcmd_repush(popup_bw); -} - /* * Tools popup menu (construction & popup) */ @@ -719,11 +705,6 @@ if (!pm) { pm = new PopupMenu(0,0,0,0, "TOOLS"); pm->begin(); - it = new Item("Larger fonts"); - it->callback(Menu_fontsize_inc_cb); - it = new Item("Smaller fonts"); - it->callback(Menu_fontsize_dec_cb); - new Divider(); it = new ToggleItem("Use remote CSS"); it->callback(Menu_remote_css_cb); it->state(prefs.load_stylesheets);