diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-02-17 05:11:39 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-02-17 05:11:39 +0000 |
commit | 9ac6ed5a82349fa0fd89359cafba98476dd82198 (patch) | |
tree | f287421b904ba710791d4c41ac7c2e93e22cf3ca /core | |
parent | 96c6121f4acafbdf879bdbfd4b0550592176815e (diff) |
Swap positions of rotation buttons so that that they're more intuitive
Diffstat (limited to 'core')
-rw-r--r-- | core/views/quick_pane.html.php | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/core/views/quick_pane.html.php b/core/views/quick_pane.html.php index 744575fc..d99d27f5 100644 --- a/core/views/quick_pane.html.php +++ b/core/views/quick_pane.html.php @@ -7,18 +7,19 @@ </a> <? if ($item->is_photo() && graphics::can("rotate")): ?> -<a class="clockwise" href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>" - title="<?= t("Rotate 90 degrees clockwise") ?>"> - <span> - <?= t("Rotate 90 degrees clockwise") ?> - </span> -</a> <a class="counter-clockwise" href="<?= url::site("quick/rotate/$item->id/ccw?csrf=" . access::csrf_token()) ?>" title="<?= t("Rotate 90 degrees counter clockwise") ?>"> <span> <?= t("Rotate 90 degrees counter clockwise") ?> </span> </a> + +<a class="clockwise" href="<?= url::site("quick/rotate/$item->id/cw?csrf=" . access::csrf_token()) ?>" + title="<?= t("Rotate 90 degrees clockwise") ?>"> + <span> + <?= t("Rotate 90 degrees clockwise") ?> + </span> +</a> <? endif ?> <a class="move gDialogLink" href="<?= url::site("move/browse/$item->id") ?>" |