My favorites
▼
|
Sign in
microemu
MicroEmu is a pure Java implementation of Java ME.
Project Home
Downloads
Wiki
Issues
Source
Export to GitHub
READ-ONLY: This project has been
archived
. For more information see
this post
.
Search
Search within:
All issues
Open issues
New issues
Issues to verify
for
Advanced search
Search tips
Subscriptions
Issue
104
attachment: microemu-midp_showNotify_implementation_part1.patch
(490 bytes)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- microemu-midp/src/main/java/javax/microedition/lcdui/Display.java@105
+++ microemu-midp/src/main/java/javax/microedition/lcdui/Display.java
@@ -366,6 +366,13 @@
current.hideNotify();
}
}
+
+ public void showNotify() {
+ Displayable current = getCurrent();
+ if (current != null) {
+ current.showNotify();
+ }
+ }
public void setCurrent(Displayable d) {
getDisplay().setCurrent(d);
Powered by
Google Project Hosting