File tree Expand file tree Collapse file tree
base/src/main/java/com/smartdevicelink/managers/screen Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7070abstract class BaseSoftButtonManager extends BaseSubManager {
7171
7272 private final WeakReference <FileManager > fileManager ;
73- private SoftButtonCapabilities softButtonCapabilities ;
73+ SoftButtonCapabilities softButtonCapabilities ;
7474 private CopyOnWriteArrayList <SoftButtonObject > softButtonObjects ;
7575 private HMILevel currentHMILevel ;
7676 private final OnSystemCapabilityListener onDisplayCapabilityListener ;
Original file line number Diff line number Diff line change @@ -97,7 +97,16 @@ public void onComplete(boolean success) {
9797 @ Override
9898 public void onComplete (boolean success ) {
9999 DebugTool .logInfo ("Finished sending soft buttons with images" );
100- onFinished ();
100+ // Upload other images
101+ uploadOtherStateImages (new CompletionListener () {
102+ @ Override
103+ public void onComplete (boolean success ) {
104+ if (success ) {
105+ DebugTool .logInfo ("Finished sending other images for soft buttons" );
106+ }
107+ onFinished ();
108+ }
109+ });
101110 }
102111 });
103112 }
You can’t perform that action at this time.
0 commit comments