Camino only: Bug 308062 - Trust CA dialogue: 'trust this certif for' options text is cut off. patch by murph <camino@seanmurph.com>. r=me sr=smfr

This commit is contained in:
stridey%gmail.com 2006-09-22 05:36:20 +00:00
Родитель 0086deb7e0
Коммит c1e25e3073
3 изменённых файлов: 10 добавлений и 4 удалений

Просмотреть файл

@ -3,10 +3,14 @@
<plist version="1.0">
<dict>
<key>IBDocumentLocation</key>
<string>87 47 356 240 0 0 1600 1002 </string>
<string>945 451 356 240 0 0 2560 1578 </string>
<key>IBFramework Version</key>
<string>437.0</string>
<string>446.1</string>
<key>IBOpenObjects</key>
<array>
<integer>5</integer>
</array>
<key>IBSystem Version</key>
<string>8C46</string>
<string>8J135</string>
</dict>
</plist>

Двоичные данные
camino/resources/localized/English.lproj/DownloadCACertDialog.nib/keyedobjects.nib сгенерированный

Двоичный файл не отображается.

Просмотреть файл

@ -557,7 +557,9 @@ const float kGapUnderCheckboxLine = 3.0f;
if ([inLabelKey length] > 0)
[self addLineLabelWithKey:inLabelKey toView:lineContainer];
float xPos = kLabelLeftOffset + [self labelColumnWidth] + kLabelGutterWidth;
// We're now using the same xPos as the header fields, since label text was getting cut off.
float xPos = kGroupHeaderLeftOffset + kCertImageViewSize + kGroupHeaderLeftOffset;
NSRect buttonRect = NSMakeRect(xPos, 0.0f, NSWidth([self frame]) - xPos - kLabelLeftOffset, 100.0f);
NSButton* theButton = [[[NSButton alloc] initWithFrame:[lineContainer subviewRectFromTopRelativeRect:buttonRect]] autorelease];