diff --git a/app/views/issues/_list.rhtml b/app/views/issues/_list.rhtml index 91390ac67..000f79853 100644 --- a/app/views/issues/_list.rhtml +++ b/app/views/issues/_list.rhtml @@ -1,7 +1,8 @@ <% form_tag({}) do -%>
| <%= link_to image_tag('edit.png'), {}, :onclick => 'toggleIssuesSelection(this.up("form")); return false;' %> + | <%= link_to image_tag('toggle_check.png'), {}, :onclick => 'toggleIssuesSelection(this.up("form")); return false;', + :title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}" %> | <%= sort_header_tag("#{Issue.table_name}.id", :caption => '#', :default_order => 'desc') %> <% query.columns.each do |column| %> diff --git a/public/images/toggle_check.png b/public/images/toggle_check.png new file mode 100644 index 000000000..aca5e4321 Binary files /dev/null and b/public/images/toggle_check.png differ diff --git a/public/images/true.png b/public/images/true.png index 7cac1eb8c..cecf618d8 100644 Binary files a/public/images/true.png and b/public/images/true.png differ
|---|