diff options
Diffstat (limited to 'src/ui.cc')
-rw-r--r-- | src/ui.cc | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -2,7 +2,7 @@ * File: ui.cc * * Copyright (C) 2005-2007 Jorge Arellano Cid <jcid@dillo.org> - * Copyright (C) 2024 Rodrigo Arias Mallo <rodarima@gmail.com> + * Copyright (C) 2024-2025 Rodrigo Arias Mallo <rodarima@gmail.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -742,6 +742,9 @@ int UI::handle(int event) } else if (cmd == KEYS_FORWARD) { a_UIcmd_forw(a_UIcmd_get_bw_by_widget(this)); ret = 1; + } else if (cmd == KEYS_COPY) { + a_UIcmd_copy(a_UIcmd_get_bw_by_widget(this)); + ret = 1; } else if (cmd == KEYS_ZOOM_IN) { a_UIcmd_zoom_in(a_UIcmd_get_bw_by_widget(this)); ret = 1; |