Use open/close icon instead of information icon.

This commit is contained in:
kovacsv 2018-12-17 19:39:40 +01:00
parent 8633ca2073
commit 3ba1e1a9fa

View File

@ -224,8 +224,8 @@ ImporterApp.prototype.GenerateMenu = function ()
materialsGroup.AddSubItem (material.name, {
openCloseButton : {
isOpen : false,
open : 'images/info.png',
close : 'images/info.png',
open : 'images/opened.png',
close : 'images/closed.png',
onOpen : function (contentDiv, material) {
contentDiv.empty ();
var table = new InfoTable (contentDiv);
@ -246,8 +246,8 @@ ImporterApp.prototype.GenerateMenu = function ()
meshesGroup.AddSubItem (mesh.name, {
openCloseButton : {
isOpen : false,
open : 'images/info.png',
close : 'images/info.png',
open : 'images/opened.png',
close : 'images/closed.png',
onOpen : function (contentDiv, mesh) {
contentDiv.empty ();
var table = new InfoTable (contentDiv);