Merge updates for handling png fallbacks from 2.4 branch (until this can be fixed on the trunk)

git-svn-id: http://svg-edit.googlecode.com/svn/trunk@1153 eee81c28-f429-11dd-99c0-75d572ba1ddd
master
Jeff Schiller 2010-01-05 03:04:19 +00:00
parent 4c2c5e793b
commit 2e9c519ea9
1 changed files with 10 additions and 6 deletions

View File

@ -184,7 +184,7 @@ function svg_edit_setup() {
// Deal with pathedit mode // Deal with pathedit mode
$('#path_node_panel').toggle(is_node); $('#path_node_panel').toggle(is_node);
$('#tools_bottom_2,#tools_bottom_3').toggle(!is_node); $('#tools_bottom_2,#tools_bottom_3').toggle(!is_node);
var size = $('#tool_select > svg')[0].getAttribute('width'); var size = $('#tool_select > svg, #tool_select > img')[0].getAttribute('width');
if(is_node) { if(is_node) {
// Change select icon // Change select icon
$('.tool_button').removeClass('tool_button_current'); $('.tool_button').removeClass('tool_button_current');
@ -1211,17 +1211,17 @@ function svg_edit_setup() {
// Change icon size // Change icon size
$('.tool_button, .push_button, .tool_button_current, .tool_button_disabled, .tool_flyout_button, #url_notice') $('.tool_button, .push_button, .tool_button_current, .tool_button_disabled, .tool_flyout_button, #url_notice')
.find('> svg').each(function() { .find('> svg, > img').each(function() {
this.setAttribute('width',size_num); this.setAttribute('width',size_num);
this.setAttribute('height',size_num); this.setAttribute('height',size_num);
}); });
$.resizeSvgIcons({ $.resizeSvgIcons({
'.flyout_arrow_horiz svg': size_num / 3, '.flyout_arrow_horiz svg, .flyout_arrow_horiz img': size_num / 3,
'#logo a > svg': size_num * 1.3 '#logo a > svg, #logo a > img': size_num * 1.3
}); });
if(size != 's') { if(size != 's') {
$.resizeSvgIcons({'#layerbuttons svg': size_num * .6}); $.resizeSvgIcons({'#layerbuttons svg, #layerbuttons img': size_num * .6});
} }
// Note that all rules will be prefixed with '#svg_editor' when parsed // Note that all rules will be prefixed with '#svg_editor' when parsed
@ -2234,6 +2234,7 @@ function svg_edit_setup() {
'redo':'redo.png', 'redo':'redo.png',
'select':'select.png', 'select':'select.png',
'select_node':'select_node.png',
'pencil':'fhpath.png', 'pencil':'fhpath.png',
'pen':'line.png', 'pen':'line.png',
'square':'square.png', 'square':'square.png',
@ -2253,6 +2254,9 @@ function svg_edit_setup() {
'ungroup':'shape_ungroup.png', 'ungroup':'shape_ungroup.png',
'move_top':'move_top.png', 'move_top':'move_top.png',
'move_bottom':'move_bottom.png', 'move_bottom':'move_bottom.png',
'to_path':'to_path.png',
'link_controls':'link_controls.png',
'reorient':'reorient.png',
'align_left':'align-left.png', 'align_left':'align-left.png',
'align_center':'align-center', 'align_center':'align-center',
@ -2336,7 +2340,7 @@ function svg_edit_setup() {
'.toolbar_button button .svg_icon':16 '.toolbar_button button .svg_icon':16
}, },
callback: function(icons) { callback: function(icons) {
$('.toolbar_button button > svg').each(function() { $('.toolbar_button button > svg, .toolbar_button button > img').each(function() {
$(this).parent().prepend(this); $(this).parent().prepend(this);
}); });