~ttosttos/eidete/fix-1004294

« back to all changes in this revision

Viewing changes to src/eidete.vala

  • Committer: Tom Beckmann
  • Date: 2012-01-14 22:32:06 UTC
  • Revision ID: tombeckmann@online.de-20120114223206-gm3biuc8acfhrs12
(probably) fixed Bug #915121

Show diffs side-by-side

added added

removed removed

Lines of Context:
136
136
                        height.max_length = 4;
137
137
                        width.set_sensitive (false);
138
138
                        height.set_sensitive (false);
 
139
                        width.halign = Align.START;
 
140
                        height.halign = Align.START;
139
141
                        
140
142
                        var recordingarea_combo = new ComboBoxText ();
141
143
                        recordingarea_combo.append ("full", "Fullscreen");
318
320
                        
319
321
                        this.main_window.focus_in_event.connect ( (ev) => {
320
322
                                if (this.selectionarea != null && !this.selectionarea.not_visible){
321
 
                                        this.selectionarea.present ();
322
 
                                        this.main_window.present ();
 
323
                                        //this.selectionarea.present ();
 
324
                                        //this.main_window.present ();
323
325
                                }
324
326
                                return false;
325
327
                        });
446
448
                        
447
449
                        videobin.get_by_name ("encoder").set  ("quality", 10.0);
448
450
                        videobin.get_by_name ("encoder").set  ("speed", 2);
 
451
                        videobin.get_by_name ("encoder").set  ("max-keyframe-distance", 150);
449
452
                        videobin.get_by_name ("encoder").set  ("threads", int.parse (cores.substring (2)));
450
453
                        
451
454