Ignore:
Timestamp:
07/24/06 07:19:50 (18 years ago)
Author:
Nicholas Riley
Message:

If you're editing an alarm, focus on the time/interval edit field
rather than the message. Relayout set alarm display when time/date
format changes (yay positionDynamically!). Attempt to fix tooltip for

1-minute alarm refreshing/flashing without changing (needs more

testing). Build against 3.0 libraries by default.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/hiptop/pester/net/sabi/pester/Alarm.java

    r277 r280  
    278278        if (i <= 24 * 60 * 60) {
    279279            i %= 60;
    280             return (i == 0 ? 60 : i);
     280            return (i == 0 ? 60 : i + 1);
    281281        }
    282282        i %= 3600;
    283         return (i == 0 ? 3600 : i);
     283        return (i == 0 ? 3600 : i + 1);
    284284    }
    285285
Note: See TracChangeset for help on using the changeset viewer.