* VRFS-1772 - prevent wrapping of frame-buffers
This commit is contained in:
parent
507eba6fbc
commit
4219b15815
|
|
@ -626,7 +626,7 @@
|
|||
$knobs.show();
|
||||
}
|
||||
else {
|
||||
$knobs.hide();
|
||||
$knobs.show();
|
||||
}
|
||||
|
||||
// handle ASIO visibility
|
||||
|
|
|
|||
|
|
@ -30,10 +30,10 @@
|
|||
left:5px;
|
||||
}
|
||||
.easydropdown-wrapper:nth-of-type(2) {
|
||||
left:35px;
|
||||
left:30px;
|
||||
}
|
||||
.easydropdown, .easydropdown-wrapper {
|
||||
width:30px;
|
||||
width:30px !important;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
Loading…
Reference in New Issue