| Index: chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
|
| ===================================================================
|
| --- chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc (revision 91773)
|
| +++ chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc (working copy)
|
| @@ -1108,7 +1108,7 @@
|
| // Don't animate if the window isn't visible yet. The window won't be visible
|
| // when dragging a mini-tab to a new window.
|
| if (window_ && window_->window() &&
|
| - gtk_widget_get_visible(GTK_WIDGET(window_->window()))) {
|
| + GTK_WIDGET_VISIBLE(GTK_WIDGET(window_->window()))) {
|
| StartMiniTabAnimation(index);
|
| } else {
|
| Layout();
|
| @@ -2127,7 +2127,7 @@
|
| gtk_util::SetButtonTriggersNavigation(button->widget());
|
| g_signal_connect(button->widget(), "clicked",
|
| G_CALLBACK(OnNewTabClickedThunk), this);
|
| - gtk_widget_set_can_focus(button->widget(), FALSE);
|
| + GTK_WIDGET_UNSET_FLAGS(button->widget(), GTK_CAN_FOCUS);
|
| gtk_fixed_put(GTK_FIXED(tabstrip_.get()), button->widget(), 0, 0);
|
|
|
| return button;
|
|
|
| Property changes on: chrome/browser/ui/gtk/tabs/tab_strip_gtk.cc
|
| ___________________________________________________________________
|
| Added: svn:mergeinfo
|
|
|
|
|