mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2026-04-17 22:10:09 +00:00
Display the app name instead of "starting app"
This commit is contained in:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user