drag edit contraints relaxed for ripples, cwdw gui/tool deadlock fix, vpatchgui fader...
[goodguy/cinelerra.git] / cinelerra-5.1 / plugins / titler / titler.C
index d0f4f681ca08fddd629e7cffa36f392c6aa8317f..4bd0b69b3f5c63ce454e5cd8355f91316b644208 100644 (file)
@@ -1339,7 +1339,8 @@ int TitleParser::wget(wchar_t &wch)
        int ich;
        while( (ich=wnext()) >= 0 ) {
                if( ich == '\\' ) {
-                       if( (ich=wnext()) == '\n' ) continue;
+                       if( (ich=wnext()) < 0 ) break;
+                       if( !ich || ich == '\n' ) continue;
                        wch = ich;
                        return 0;
                }
@@ -2465,7 +2466,6 @@ void TitleMain::update_gui()
                        window->lock_window("TitleMain::update_gui");
                        window->update();
                        window->unlock_window();
-                       window->color_thread->update_gui(config.color, 0);
                }
        }
 }