]> git.lizzy.rs Git - minetest.git/commitdiff
Content store: Disable more details dialog for now (#8060)
authorrubenwardy <rw@rubenwardy.com>
Sun, 6 Jan 2019 15:54:22 +0000 (15:54 +0000)
committerLoïc Blot <nerzhul@users.noreply.github.com>
Sun, 6 Jan 2019 15:54:22 +0000 (16:54 +0100)
* Content store: Disable more details dialog for now

builtin/mainmenu/dlg_contentstore.lua

index a050113e4f0323160afa0ac1bf94ad70c61000dd..4c9f760b21444c2c1f4ef2f1489cd3f46f1d7465 100644 (file)
@@ -466,36 +466,43 @@ function store.get_formspec()
                formspec[#formspec + 1] = "]"
 
                -- description
-               formspec[#formspec + 1] = "textarea[1.25,0.3;7.5,1;;;"
+               if package.path and package.installed_release < package.release then
+                       formspec[#formspec + 1] = "textarea[1.25,0.3;7.5,1;;;"
+               else
+                       formspec[#formspec + 1] = "textarea[1.25,0.3;9,1;;;"
+               end
                formspec[#formspec + 1] = core.formspec_escape(package.short_description)
                formspec[#formspec + 1] = "]"
 
                -- buttons
                if not package.path then
-                       formspec[#formspec + 1] = "button[8.4,0;1.5,1;install_"
+                       formspec[#formspec + 1] = "button[9.9,0;1.5,1;install_"
                        formspec[#formspec + 1] = tostring(i)
                        formspec[#formspec + 1] = ";"
                        formspec[#formspec + 1] = fgettext("Install")
                        formspec[#formspec + 1] = "]"
-               elseif package.installed_release < package.release then
-                       -- The install_ action also handles updating
-                       formspec[#formspec + 1] = "button[8.4,0;1.5,1;install_"
-                       formspec[#formspec + 1] = tostring(i)
-                       formspec[#formspec + 1] = ";"
-                       formspec[#formspec + 1] = fgettext("Update")
-                       formspec[#formspec + 1] = "]"
                else
-                       formspec[#formspec + 1] = "button[8.4,0;1.5,1;uninstall_"
+                       if package.installed_release < package.release then
+                               -- The install_ action also handles updating
+                               formspec[#formspec + 1] = "button[8.4,0;1.5,1;install_"
+                               formspec[#formspec + 1] = tostring(i)
+                               formspec[#formspec + 1] = ";"
+                               formspec[#formspec + 1] = fgettext("Update")
+                               formspec[#formspec + 1] = "]"
+                       end
+
+                       formspec[#formspec + 1] = "button[9.9,0;1.5,1;uninstall_"
                        formspec[#formspec + 1] = tostring(i)
                        formspec[#formspec + 1] = ";"
                        formspec[#formspec + 1] = fgettext("Uninstall")
                        formspec[#formspec + 1] = "]"
                end
-               formspec[#formspec + 1] = "button[9.9,0;1.5,1;view_"
-               formspec[#formspec + 1] = tostring(i)
-               formspec[#formspec + 1] = ";"
-               formspec[#formspec + 1] = fgettext("View")
-               formspec[#formspec + 1] = "]"
+
+               --formspec[#formspec + 1] = "button[9.9,0;1.5,1;view_"
+               --formspec[#formspec + 1] = tostring(i)
+               --formspec[#formspec + 1] = ";"
+               --formspec[#formspec + 1] = fgettext("View")
+               --formspec[#formspec + 1] = "]"
 
                formspec[#formspec + 1] = "container_end[]"
        end