Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
fix flawed logic for status bar icon timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
kirb committed Mar 2, 2014
1 parent 61af8a8 commit dff8121
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .theos/last_package
Original file line number Diff line number Diff line change
@@ -1 +1 @@
debs/ws.hbang.typestatus_1.1.1~beta4-165_iphoneos-arm.deb
debs/ws.hbang.typestatus_1.1.1~beta5-3+debug_iphoneos-arm.deb
2 changes: 1 addition & 1 deletion .theos/packages/ws.hbang.typestatus-1.1.1~beta4
Original file line number Diff line number Diff line change
@@ -1 +1 @@
165
167
1 change: 1 addition & 0 deletions .theos/packages/ws.hbang.typestatus-1.1.1~beta5
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3
4 changes: 1 addition & 3 deletions SpringBoard.xmi
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,7 @@ NSString *HBTSNameForHandle(NSString *handle) {
typingTimer = nil;
}

if (typingTimeout || isTesting) {
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)((isTesting ? overlayDuration : kHBTSTypingTimeout) * NSEC_PER_SEC)), dispatch_get_main_queue(), typingEnded);
}
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)((typingTimeout || isTesting ? overlayDuration : kHBTSTypingTimeout) * NSEC_PER_SEC)), dispatch_get_main_queue(), typingEnded);
}

if (typingStatus) {
Expand Down

0 comments on commit dff8121

Please sign in to comment.