# HG changeset patch # User John Tsiombikas # Date 1443677815 -10800 # Node ID 25d821ab1ca23255bba62f6ef138cba51287c245 # Parent f4dd01c36b0c4b5aaeb2c6c275aadfc2a62fc184 fixed ios bugs diff -r f4dd01c36b0c -r 25d821ab1ca2 ios/Info.plist --- a/ios/Info.plist Thu Oct 01 08:03:43 2015 +0300 +++ b/ios/Info.plist Thu Oct 01 08:36:55 2015 +0300 @@ -19,7 +19,7 @@ CFBundleSignature ???? CFBundleVersion - 1 + 2 LSRequiresIPhoneOS UIRequiredDeviceCapabilities diff -r f4dd01c36b0c -r 25d821ab1ca2 src/istereo.c --- a/src/istereo.c Thu Oct 01 08:03:43 2015 +0300 +++ b/src/istereo.c Thu Oct 01 08:36:55 2015 +0300 @@ -63,7 +63,7 @@ float text_period = 13.0; float text_speed = 2.2; -float split = 0.5275; +float split = 0.4725; int init(void) { diff -r f4dd01c36b0c -r 25d821ab1ca2 src/ui.cc --- a/src/ui.cc Thu Oct 01 08:03:43 2015 +0300 +++ b/src/ui.cc Thu Oct 01 08:36:55 2015 +0300 @@ -68,19 +68,19 @@ ypos -= vsep; label_split = new Label; - label_split->set_position(170, ypos); + label_split->set_position(70, ypos); label_split->set_size(20, vsz); label_split->set_text("Stereo split"); if(!stereo) label_split->deactivate(); scr.add_widget(label_split); slider_split = new Slider; - slider_split->set_position(300, ypos); - slider_split->set_size(300, vsz); - slider_split->set_callback(EV_CHANGE, split_slider_handler); + slider_split->set_position(200, ypos); + slider_split->set_size(400, vsz); slider_split->set_continuous_change(true); slider_split->set_range(0, 1.0); slider_split->set_value(split); + slider_split->set_callback(EV_CHANGE, split_slider_handler); if(!stereo) slider_split->deactivate(); scr.add_widget(slider_split); ypos -= vsep;