* VRFS-1772 - prevent wrapping of frame-buffers

This commit is contained in:
Seth Call 2014-06-09 23:28:31 -05:00
parent 507eba6fbc
commit 4219b15815
3 changed files with 21 additions and 3 deletions

View File

@ -626,7 +626,7 @@
$knobs.show();
}
else {
$knobs.hide();
$knobs.show();
}
// handle ASIO visibility

View File

@ -30,10 +30,10 @@
left:5px;
}
.easydropdown-wrapper:nth-of-type(2) {
left:35px;
left:30px;
}
.easydropdown, .easydropdown-wrapper {
width:30px;
width:30px !important;
}
}

View File

@ -0,0 +1,18 @@
require 'spec_helper'
describe "Gear Wizard", :js => true, :type => :feature, :capybara_feature => true, :slow => true do
subject { page }
let(:user) { FactoryGirl.create(:user) }
before(:each) do
emulate_client
sign_in_poltergeist user
end
it "launches from audio profile screen" do
end
end