Browse Source

Fixed bug in shortcut app selector

Toby Chui 3 years ago
parent
commit
17f866c84d
2 changed files with 3 additions and 2 deletions
  1. 1 1
      web/SystemAO/desktop/personalization.html
  2. 2 1
      web/mobile.system

+ 1 - 1
web/SystemAO/desktop/personalization.html

@@ -312,7 +312,7 @@
                 $.get("../../system/modules/list", function(data){
                     $(".webapplist").html('');
                     data.forEach(app => {
-                        if (app.Group != "Interface Module"){
+                        if (app.Group != "Interface Module" && app.Group != "IME" && app.StartDir != ""){
                             $(".webapplist").append(`<div class="item" data-value="${app.Name}">${app.Name}</div>`);
                         }
                     });

+ 2 - 1
web/mobile.system

@@ -358,9 +358,10 @@
                 padding: 1em;
             }
 
-            #shortcuts .clickable{
+            #shortcuts .clickable.image{
                 cursor: pointer;
                 border-radius: 10px;
+                padding: 0.1em;
             }
 
             .disabled{