Feature Request: Add to Plater: Ctrl+O

implements https://github.com/prusa3d/Slic3r/issues/379
thanks @alexrj
This commit is contained in:
bubnikv 2017-12-05 20:06:19 +01:00
parent b0f84c5cb2
commit 2eeca93a97

View file

@ -171,6 +171,9 @@ sub _init_menubar {
# File menu
my $fileMenu = Wx::Menu->new;
{
wxTheApp->append_menu_item($fileMenu, "Open STL/OBJ/AMF…\tCtrl+O", 'Open a model', sub {
$self->{plater}->add if $self->{plater};
}, undef, undef); #'brick_add.png');
$self->_append_menu_item($fileMenu, "&Load Config…\tCtrl+L", 'Load exported configuration file', sub {
$self->load_config_file;
}, undef, 'plugin_add.png');