On Fri, Jan 4, 2013 at 11:50 AM, Tobias Ellinghaus <h...@gmx.de> wrote:
> Am Donnerstag, 3. Januar 2013, 23:42:44 schrub Pascal Obry:
>> Johannes,
>>
>> The fix is there:
>>    https://github.com/darktable-org/darktable/pull/134
>>
>> I have been able to reproduce the issue with a very long style name.
>> With this patch the dialog stay visible inside the main window.
>
> Don't do that, it will probably fail horribly when you change font sizes,
> borders, ...
>
> We have these problems with the gtk dropdown boxen all over the place.

at some point this:


GList *renderers = gtk_cell_layout_get_cells(GTK_CELL_LAYOUT(combobox));
  it = renderers;
  while(it)
{
    GtkCellRendererText *tr = GTK_CELL_RENDERER_TEXT(it->data);
    g_object_set(G_OBJECT(tr), "ellipsize", PANGO_ELLIPSIZE_MIDDLE,
(char *)NULL);
    it = g_list_next(it);
  }
  g_list_free(renderers);

did the trick, in other places you could have a gtk table around it
with certain flags that wouldn't allow it to grow from the inside or
so..

j.

------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. ON SALE this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122712
_______________________________________________
darktable-devel mailing list
darktable-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/darktable-devel

Reply via email to