There is, using a little BugMonkey script:
name: Reverse BugEvents
description: Temporarily switches BugEvent order
author: Tyler Hicks-Wright
version: 1.1.0.0
js:
var be = $('#BugEvents');
if (be.length > 0) {
var wher = '.statusbar';
if ($(wher).length == 0) {
wher = '#statusbarspacer';
}
$('<a>').appendTo(wher).addClass('TGHW_BugEventOrder')
.attr('href', 'javascript:void(0);').attr('title', 'Reverse events')
.click(function() {
$('#BugEvents .bugevent, #BugEvents .pseudobugevent')
.each(function(i, e) { be.prepend($(e).remove()); });
});
}
css:
.TGHW_BugEventOrder {
background: url(https://tghwmedia.appspot.com/media/hwnet/img/ui-accordion.png) no-repeat;
height: 16px;
width: 16px;
display: block;
float: right;
}
This puts a small icon
at the top right of the page. When you click it, the order of bug events will reverse. Click it again to restore. Note that it does not change your default order setting, so if you reload the page, or view another bug, the order will be restored.