Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
a8547448
Kaydet (Commit)
a8547448
authored
Şub 26, 2015
tarafından
Tomaž Vajngerl
Kaydeden (comit)
Miklos Vajna
Mar 02, 2015
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
android: swap position of invalidateCursor and invalidateTiles
Change-Id: Iebc21915b92c82b0def3f4f61fb2128c2942d122
üst
c2ab7797
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
12 deletions
+12
-12
InvalidationHandler.java
...ndroid3/src/java/org/libreoffice/InvalidationHandler.java
+12
-12
No files found.
android/experimental/LOAndroid3/src/java/org/libreoffice/InvalidationHandler.java
Dosyayı görüntüle @
a8547448
...
...
@@ -115,6 +115,18 @@ public class InvalidationHandler {
return
new
RectF
(
rectangle
.
centerX
(),
rectangle
.
bottom
,
rectangle
.
centerX
(),
rectangle
.
bottom
);
}
/**
* Handles the tile invalidation message
*
* @param payload
*/
private
void
invalidateTiles
(
String
payload
)
{
RectF
rectangle
=
convertPayloadToRectangle
(
payload
);
if
(
rectangle
!=
null
)
{
LOKitShell
.
sendTileInvalidationRequest
(
rectangle
);
}
}
/**
* Handles the cursor invalidation message
*
...
...
@@ -136,18 +148,6 @@ public class InvalidationHandler {
}
}
/**
* Handles the tile invalidation message
*
* @param payload
*/
private
void
invalidateTiles
(
String
payload
)
{
RectF
rectangle
=
convertPayloadToRectangle
(
payload
);
if
(
rectangle
!=
null
)
{
LOKitShell
.
sendTileInvalidationRequest
(
rectangle
);
}
}
/**
* Handles the selection start invalidation message
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment