mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-20 11:33:06 +00:00
Display the app name instead of "starting app"
This commit is contained in:
parent
1df03e137b
commit
2cc2d05c2f
@ -226,6 +226,11 @@ public class NvConnection {
|
|||||||
{
|
{
|
||||||
boolean success = false;
|
boolean success = false;
|
||||||
|
|
||||||
|
if (currentStage == NvConnectionListener.Stage.LAUNCH_APP) {
|
||||||
|
// Display the app name instead of the stage name
|
||||||
|
currentStage.setName(config.getApp());
|
||||||
|
}
|
||||||
|
|
||||||
listener.stageStarting(currentStage);
|
listener.stageStarting(currentStage);
|
||||||
try {
|
try {
|
||||||
switch (currentStage)
|
switch (currentStage)
|
||||||
|
@ -15,6 +15,10 @@ public interface NvConnectionListener {
|
|||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void setName(String name) {
|
||||||
|
this.name = name;
|
||||||
|
}
|
||||||
|
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user