fix selected then slice. fix firefox compact mode

This commit is contained in:
Stewart Allen 2020-03-30 11:48:53 -04:00
commit e7b1af60a4
2 changed files with 12 additions and 3 deletions

View file

@ -706,11 +706,10 @@ self.kiri.copyright = exports.COPYRIGHT;
API.view.snapshot = snap.substring(snap.indexOf(",")+1);
}
setViewMode(VIEWS.SLICE);
clearPrint();
API.conf.save();
platform.deselect();
setViewMode(VIEWS.SLICE);
API.conf.save();
var firstMesh = true,
countdown = WIDGETS.length,

View file

@ -314,6 +314,16 @@ th, tr, td, span, div, label, button {
font-size: larger !important;
padding: 5px 10px 5px 10px;
}
:-moz-any(#control-left.compact) {
overflow-x: display !important;
overflow-y: display !important;
}
:-moz-any(#control-right.compact) {
overflow-x: display !important;
overflow-y: display !important;
margin-right: auto !important;
margin-bottom: auto !important;
}
#control-left::-webkit-scrollbar, #control-right::-webkit-scrollbar {
display: none;
}