If I set title of the window or dialog in Hebrew, caption of the title
bar can be shown in Hebrew locale. Source code is following.

//file gtk_dialog_text_he.cpp
# include <gtk/gtk.h>

int main( int argc, char *argv[] )
{
    GtkWidget *gtkmsgDialog;

    gtk_init (&argc, &argv);

    gtkmsgDialog = gtk_dialog_new();

    gtk_window_set_title(GTK_WINDOW(gtkmsgDialog),"מחשב");
    gtk_window_set_position(GTK_WINDOW(gtkmsgDialog), GTK_WIN_POS_CENTER);
    gtk_window_resize(GTK_WINDOW(gtkmsgDialog), 200,50);

    gtk_widget_show(gtkmsgDialog);

    gtk_main();

    return 0;
}

-- 
[bidi] Title Bar Caption of Window and Dialog Missing
https://bugs.launchpad.net/bugs/235770
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to