Compare commits

..

No commits in common. "3a37d136ec52762fee5ca5e4141645cd416d8372" and "7d178278c539c7ca3f6feb86b8a83b222e70866a" have entirely different histories.

4 changed files with 8 additions and 14 deletions

View file

@ -2275,11 +2275,6 @@ Scrollbars
border-radius: 8px; border-radius: 8px;
} }
body {
scrollbar-width: thin;
scrollbar-width: 8px;
}
/* /*
================================================================================ ================================================================================
SourceViewer SourceViewer

View file

@ -1188,10 +1188,6 @@ Scrollbars
background: -webkit-linear-gradient(left, $buttonActiveGradient); background: -webkit-linear-gradient(left, $buttonActiveGradient);
} }
body.$themeClass {
scrollbar-color: $bodyBorder $bodyBackground;
}
/* /*
================================================================================ ================================================================================
SourceViewer SourceViewer

View file

@ -47,7 +47,7 @@ Ox.SCROLLBAR_SIZE = Ox.UI.SCROLLBAR_SIZE = $.browser.webkit ? 8 : (function() {
width = 1 + width - (inner[0].offsetWidth == width width = 1 + width - (inner[0].offsetWidth == width
? outer[0].clientWidth : inner[0].offsetWidth); ? outer[0].clientWidth : inner[0].offsetWidth);
outer.remove(); outer.remove();
return width + width % 2; return width;
})(); })();
//@ Ox.UI.PATH <str> Path of Ox UI //@ Ox.UI.PATH <str> Path of Ox UI

View file

@ -16,6 +16,7 @@ Ox.VideoAnnotationPanel <f> VideoAnnotationPanel Object
downloadframe <!> downloadframe downloadframe <!> downloadframe
downloadvideo <!> downloadvideo downloadvideo <!> downloadvideo
editannotation <!> editannotation editannotation <!> editannotation
editannotation <!> editannotation
embedselection <!> embedselection embedselection <!> embedselection
findannotations <!> findannotations findannotations <!> findannotations
find <!> find find <!> find
@ -1719,15 +1720,17 @@ Ox.VideoAnnotationPanel = function(options, self) {
// id might have changed if new annotation was created // id might have changed if new annotation was created
if (annotation.id) { if (annotation.id) {
self.options.selected = annotation.id; self.options.selected = annotation.id;
var layer = Ox.getObjectById(self.options.layers, annotation.layer);
var item = Ox.getObjectById(layer.items, annotation.id);
if (!item) {
layer.items.push(annotation);
self.annotations = getAnnotations();
}
} }
if (getSelectedLayer() == self.options.subtitlesLayer) { if (getSelectedLayer() == self.options.subtitlesLayer) {
updateSubtitles(); updateSubtitles();
} }
self.$annotationPanel.updateItem(id, annotation); self.$annotationPanel.updateItem(id, annotation);
if (id != annotation.id) {
self.annotations = getAnnotations();
setTimelineState();
}
}; };
/*@ /*@