Changeset b75604f9


Ignore:
Timestamp:
06/10/2015 06:57:09 PM (9 years ago)
Author:
Fernando de Oliveira <fernando@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 7.10, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
2a879b7c
Parents:
b9929f1
Message:

Fix Gtk3 window resize bug (after upstream committed patch).

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@16106 af4574ff-66df-0310-9fd7-8a98e5e911e0

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • general.ent

    rb9929f1 rb75604f9  
    11<!-- $LastChangedBy$ $Date$ -->
    22
    3 <!ENTITY day          "09">                   <!-- Always 2 digits -->
     3<!ENTITY day          "10">                   <!-- Always 2 digits -->
    44<!ENTITY month        "06">                   <!-- Always 2 digits -->
    55<!ENTITY year         "2015">
     
    77<!ENTITY copyholder   "The BLFS Development Team">
    88<!ENTITY version      "&year;-&month;-&day;">
    9 <!ENTITY releasedate  "June 9th &year;">
     9<!ENTITY releasedate  "June 10th &year;">
    1010<!ENTITY pubdate      "&year;-&month;-&day;"> <!-- metadata req. by TLDP -->
    1111<!ENTITY blfs-version "svn">                  <!-- svn|[release #] -->
  • introduction/welcome/changelog.xml

    rb9929f1 rb75604f9  
    4444
    4545-->
     46
     47    <listitem>
     48      <para>June 10th, 2015</para>
     49      <itemizedlist>
     50        <listitem>
     51          <para>[fernando] - Resize window does not work for some gtk3
     52          applications. Fixes
     53          <ulink url="&blfs-ticket-root;6590">#6590</ulink>.</para>
     54        </listitem>
     55      </itemizedlist>
     56    </listitem>
    4657
    4758    <listitem>
  • x/lib/gtk+3.xml

    rb9929f1 rb75604f9  
    125125    </para>
    126126
    127 <screen><userinput>./configure --prefix=/usr             \
     127<screen><userinput>sed -e '/priv->decorated ||$/ a\    return;\n' \
     128    -e 's/\(.*priv->decorated\) ||$/\1)/' \
     129    -e '/(!gtk_window_should/ i\  if (!priv->client_decorated &amp;&amp;' \
     130    -e '/ !priv->client_decorated) ||/ s/(!/!(/' \
     131    -e 's/ !priv->client_decorated) ||//' \
     132    -e 's/!\(gtk_window_supports.*\)/  \1)/' \
     133    -i gtk/gtkwindow.c &amp;&amp;
     134
     135./configure --prefix=/usr             \
    128136            --sysconfdir=/etc         \
    129137            --enable-broadway-backend \
     
    170178  <sect2 role="commands">
    171179    <title>Command Explanations</title>
     180
     181    <para>
     182      <command>sed ... -i gtk/gtkwindow.c</command>: fix
     183      <application>Gtk3</application> window resize bug (after upstream
     184      committed patch).
     185    </para>
    172186
    173187    <para>
Note: See TracChangeset for help on using the changeset viewer.