Custom Query (337 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (61 - 63 of 337)

Ticket Owner Reporter Resolution Summary
#92 István Váradi István Váradi implemented Highlight the fault lines in the log
Description

Both the normal log and that in the PIREP viewer should contain the faults highlighted. Some code example:



import pygtk
import gtk

window = gtk.Window()
window.set_title("Proba")

vbox = gtk.VBox()
window.add(vbox)

textView = gtk.TextView()
vbox.pack_start(textView, True, True, 0)

buffer = textView.get_buffer()
buffer.insert(buffer.get_end_iter(), "First line\n")

redTag = gtk.TextTag()
redTag.set_property("foreground", "red")
redTag.set_property("weight", 700)
buffer.get_tag_table().add(redTag)

buffer.insert_with_tags(buffer.get_end_iter(), "Red line\n", redTag)

buffer.insert(buffer.get_end_iter(), "Third line\n")

buffer.insert_with_tags(buffer.get_end_iter(), "Yet another red line\n", redTag)

buffer.insert(buffer.get_end_iter(), "Fifth line\n")

window.set_size_request(400, 300)
window.show_all()

gtk.main()
#93 István Váradi István Váradi implemented Add the URL to the about dialog
#94 István Váradi István Váradi implemented Check if fuel weight could be calculated more accurately
Description

When converting to FSUIPC value, the percentage was multiplied by 128.8 instead of 128.0.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.