]> gitweb.ps.run Git - ps-cgit/blobdiff - ui-shared.c
Minor fixup in tree-view css
[ps-cgit] / ui-shared.c
index 03d147f615201b1a588cfa41de25d0e9d0cafdde..73e3d4cc81f2216bc2c9edaa495057ab8b0e6034 100644 (file)
@@ -518,6 +518,13 @@ void cgit_print_pageheader(struct cgit_context *ctx)
                               ctx->qry.sha1, ctx->qry.sha2, NULL);
                cgit_patch_link("patch", NULL, hc(cmd, "patch"), ctx->qry.head,
                                ctx->qry.sha1);
+               html("</td><td class='branch'>");
+               html("<form method='get' action=''>\n");
+               add_hidden_formfields(0, 1, ctx->qry.page);
+               html("<select name='h' onchange='this.form.submit();'>\n");
+               for_each_branch_ref(print_branch_option, ctx->qry.head);
+               html("</select> ");
+               html("<input type='submit' name='' value='switch'/>");
        } else {
                html("<a class='active' href='");
                html_attr(cgit_rooturl());